Author: ianmacarthur Date: 2013-02-20 02:27:47 -0800 (Wed, 20 Feb 2013) New Revision: 9827 Log: Typo: It turns out that when we stepped the version number up to 1.3.2, we didn't change the hard coded value in fluid's about_panel.
Though: Why is this value hard-coded anyway? Should fluid not be picking that up from Enumerations.h at build time, or something? Modified: branches/branch-1.3/fluid/about_panel.cxx branches/branch-1.3/fluid/about_panel.fl branches/branch-1.3/fluid/about_panel.h Modified: branches/branch-1.3/fluid/about_panel.cxx =================================================================== --- branches/branch-1.3/fluid/about_panel.cxx 2013-02-19 15:25:17 UTC (rev 9826) +++ branches/branch-1.3/fluid/about_panel.cxx 2013-02-20 10:27:47 UTC (rev 9827) @@ -16,7 +16,7 @@ // http://www.fltk.org/str.php // -// generated by Fast Light User Interface Designer (fluid) version 1.0300 +// generated by Fast Light User Interface Designer (fluid) version 1.0302 #include "about_panel.h" void show_help(const char *name); @@ -269,7 +269,7 @@ { Fl_Box* o = new Fl_Box(10, 10, 115, 120); o->image(image_fluid); } // Fl_Box* o - { Fl_Box* o = new Fl_Box(135, 10, 200, 70, "FLTK User\nInterface Designer\nVersion 1.3.1"); + { Fl_Box* o = new Fl_Box(135, 10, 200, 70, "FLTK User\nInterface Designer\nVersion 1.3.2"); o->color((Fl_Color)12); o->selection_color(FL_DARK1); o->labelfont(1); Modified: branches/branch-1.3/fluid/about_panel.fl =================================================================== --- branches/branch-1.3/fluid/about_panel.fl 2013-02-19 15:25:17 UTC (rev 9826) +++ branches/branch-1.3/fluid/about_panel.fl 2013-02-20 10:27:47 UTC (rev 9827) @@ -1,5 +1,5 @@ # data file for the Fltk User Interface Designer (fluid) -version 1.0300 +version 1.0302 header_name {.h} code_name {.cxx} comment {// @@ -25,10 +25,11 @@ decl {void show_help(const char *name);} {public local } -Function {make_about_panel()} {} { +Function {make_about_panel()} {open +} { Fl_Window about_panel { label {About FLUID} open - xywh {419 216 345 180} type Double color 50 selection_color 47 hotspot non_modal visible + xywh {680 247 345 180} type Double color 50 selection_color 47 hotspot non_modal visible } { Fl_Box {} { image {icons/fluid-96.xpm} xywh {10 10 115 120} @@ -36,7 +37,7 @@ Fl_Box {} { label {FLTK User Interface Designer -Version 1.3.1} +Version 1.3.2} selected xywh {135 10 200 70} color 12 selection_color 47 labelfont 1 labelsize 18 align 21 } Fl_Box {} { Modified: branches/branch-1.3/fluid/about_panel.h =================================================================== --- branches/branch-1.3/fluid/about_panel.h 2013-02-19 15:25:17 UTC (rev 9826) +++ branches/branch-1.3/fluid/about_panel.h 2013-02-20 10:27:47 UTC (rev 9827) @@ -16,7 +16,7 @@ // http://www.fltk.org/str.php // -// generated by Fast Light User Interface Designer (fluid) version 1.0300 +// generated by Fast Light User Interface Designer (fluid) version 1.0302 #ifndef about_panel_h #define about_panel_h _______________________________________________ fltk-commit mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-commit
