diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2005-07-09 07:48:05 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2005-07-09 07:48:05 +0000 |
| commit | 9e28a66b1f58f51a1432e505b2019da82cc30161 (patch) | |
| tree | 4a31730854f3783bf0dc027ce64fc4fb6bca3883 | |
| parent | 8461a157e489601bdc2e0f83812708315c6dedc5 (diff) | |
fixed 'static' vs. forward declaration mixup for my last commit
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4409 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | fluid/Fl_Widget_Type.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx index 0b9ec37df..639a9cc2e 100644 --- a/fluid/Fl_Widget_Type.cxx +++ b/fluid/Fl_Widget_Type.cxx @@ -2291,7 +2291,7 @@ int Fl_Widget_Type::read_fdesign(const char* propname, const char* value) { return 1; } -static void leave_live_mode_cb(Fl_Widget*, void*) { +void leave_live_mode_cb(Fl_Widget*, void*) { live_mode_cb(0, 0); } @@ -2351,6 +2351,7 @@ void Fl_Widget_Type::copy_properties() { // if (x != y) write_string("slider_size %g", x); //} } +*/ /* move this into the derived _type classes {Fl_Font ff; int fs; Fl_Color fc; if (textstuff(4,ff,fs,fc)) { Fl_Font f; int s; Fl_Color c; textstuff(0,f,s,c); |
