summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-01-13 15:45:50 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-01-13 15:45:50 +0000
commitab5771b62fbff2510ff495ba6dd2fcd8d1720593 (patch)
tree053c436d4a29715f964a5955c9da1e51aad0f693 /fluid
parenta64292cc5f56e165b471f5bb23acea765d838c7e (diff)
Fixes from Bill:
- Fl_Clock now uses the Fl_Clock_Output base class to get the system time. - Fl_Window::iconize() and Fl_Window::icon() now coexist peacefully with all X window managers. - Minor fixes to mandelbrot and shape demos. - Menu code cleanup. git-svn-id: file:///fltk/svn/fltk/trunk@209 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Fl_Function_Type.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx
index 9dd1d1f53..023dc03ff 100644
--- a/fluid/Fl_Function_Type.cxx
+++ b/fluid/Fl_Function_Type.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Function_Type.cxx,v 1.11 1999/01/07 21:21:20 mike Exp $"
+// "$Id: Fl_Function_Type.cxx,v 1.12 1999/01/13 15:45:48 mike Exp $"
//
// C function type code for the Fast Light Tool Kit (FLTK).
//
@@ -211,14 +211,14 @@ void Fl_Function_Type::write_code1() {
if (name()[0] == '~')
constructor = 1;
else {
- size_t n = strlen(k);
- if (!strncmp(name(), k, n) && name()[n] == '(') constructor = 1;
+ size_t n = strlen(k);
+ if (!strncmp(name(), k, n) && name()[n] == '(') constructor = 1;
}
write_h(" ");
if (!constructor) {
- if (is_static) write_h("static ");
- write_h("%s ", t);
- write_c("%s ", t);
+ if (is_static) write_h("static ");
+ write_h("%s ", t);
+ write_c("%s ", t);
}
write_h("%s;\n", name());
write_c("%s::%s {\n", k, name());
@@ -697,5 +697,5 @@ void Fl_Class_Type::write_code2() {
}
//
-// End of "$Id: Fl_Function_Type.cxx,v 1.11 1999/01/07 21:21:20 mike Exp $".
+// End of "$Id: Fl_Function_Type.cxx,v 1.12 1999/01/13 15:45:48 mike Exp $".
//