summaryrefslogtreecommitdiff
path: root/src/Stitch.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-26 20:22:36 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-26 20:22:36 +0100
commit3d4e62d3c9781649ef5ea01825fd5c686e63379c (patch)
treed1b2c148f480d0104c056781c49b234ff547e14e /src/Stitch.cxx
parenteb72978eb28008f677145dbeb1b3090ed47a5b19 (diff)
style
Diffstat (limited to 'src/Stitch.cxx')
-rw-r--r--src/Stitch.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Stitch.cxx b/src/Stitch.cxx
index e69a28e..8a1b429 100644
--- a/src/Stitch.cxx
+++ b/src/Stitch.cxx
@@ -23,7 +23,7 @@ static double pi_d = asin(1.0) * 2.0;
static double deg2rad = pi_d / 180.0;
Stitch::Stitch() {
- for (int i=0; i<MAX_PICS; i++)
+ for (int i = 0; i < MAX_PICS; i++)
gipf[i] = NULL;
merged_image = NULL;
@@ -31,7 +31,7 @@ Stitch::Stitch() {
}
Stitch::~Stitch() {
- for (int i=0; i<MAX_PICS; i++)
+ for (int i = 0; i < MAX_PICS; i++)
if (gipf[i])
delete gipf[i];
else
@@ -40,7 +40,7 @@ Stitch::~Stitch() {
int
Stitch::load_image(char *file) {
- for (int i=0; i<MAX_PICS; i++) {
+ for (int i = 0; i < MAX_PICS; i++) {
if (gipf[i] == NULL) {
gipf[i] = new GipfelWidget(0, 0, 800, 600);
if (gipf[i]->load_image(file) != 0) {