summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-06-07 11:41:36 +0000
committerManolo Gouy <Manolo>2011-06-07 11:41:36 +0000
commit75c9d386faed27812dba5cd3807155fdd9b9898b (patch)
tree087cb2491f7fa651b5c177cea5a9076953a235e0 /fluid
parent7feb5a9dfeeae416cb86e7019ffda697c94c8f90 (diff)
Fix STR #2657: repaired indentation error in fluid-output code.
Also changed copyright year to 2011. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8786 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Fl_Function_Type.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx
index 35ad98a37..60a022910 100644
--- a/fluid/Fl_Function_Type.cxx
+++ b/fluid/Fl_Function_Type.cxx
@@ -3,7 +3,7 @@
//
// C function type code for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2011 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -552,7 +552,7 @@ void Fl_CodeBlock_Type::write_code1() {
}
void Fl_CodeBlock_Type::write_code2() {
- indentation += 2;
+ indentation -= 2;
if (after) write_c("%s} %s\n", indent(), after);
else write_c("%s}\n", indent());
}