diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-28 20:48:49 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-28 20:48:49 +0000 |
| commit | 77e2314f2a31ea4d5b3c4545e449276b0ee206c9 (patch) | |
| tree | 2ceb128454084eaa877e56bc78aa34d91ad1b8e0 | |
| parent | c78dcd55ec0b09329c509668507922683f90aab4 (diff) | |
Missing cast in Fl_Tooltip.cxx...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1778 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 3 | ||||
| -rw-r--r-- | FL/Enumerations.H | 4 | ||||
| -rw-r--r-- | src/Fl_Tooltip.cxx | 6 |
3 files changed, 8 insertions, 5 deletions
@@ -3,6 +3,9 @@ CHANGES IN FLTK 1.1.0b6 - Documentation updates... - The configure script now works within the CygWin environment. + - Tooltips are now enabled by default, but are not + re-enabled when calling the Fl_Widget::tooltip() + method. - Added new Fl::version() method to get the current FLTK library version (for shared libraries/DLLs) - Added new Fl::event() method to get the current diff --git a/FL/Enumerations.H b/FL/Enumerations.H index 860977f7c..55ec23124 100644 --- a/FL/Enumerations.H +++ b/FL/Enumerations.H @@ -1,5 +1,5 @@ // -// "$Id: Enumerations.H,v 1.18.2.14.2.8 2001/11/28 20:43:44 easysw Exp $" +// "$Id: Enumerations.H,v 1.18.2.14.2.9 2001/11/28 20:48:49 easysw Exp $" // // Enumerations for the Fast Light Tool Kit (FLTK). // @@ -364,5 +364,5 @@ enum Fl_Damage { #endif // -// End of "$Id: Enumerations.H,v 1.18.2.14.2.8 2001/11/28 20:43:44 easysw Exp $". +// End of "$Id: Enumerations.H,v 1.18.2.14.2.9 2001/11/28 20:48:49 easysw Exp $". // diff --git a/src/Fl_Tooltip.cxx b/src/Fl_Tooltip.cxx index b393fa310..723071c2c 100644 --- a/src/Fl_Tooltip.cxx +++ b/src/Fl_Tooltip.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tooltip.cxx,v 1.38.2.8 2001/11/28 20:43:44 easysw Exp $" +// "$Id: Fl_Tooltip.cxx,v 1.38.2.9 2001/11/28 20:48:49 easysw Exp $" // // Tooltip source file for the Fast Light Tool Kit (FLTK). // @@ -36,7 +36,7 @@ // void (*Fl_Tooltip::tooltip_callback_)(void *) = Fl_Tooltip::tooltip_timeout; -void (*Fl_Tooltip::tooltip_exit_)(void *) = Fl_Tooltip::tooltip_exit; +void (*Fl_Tooltip::tooltip_exit_)(void *) = (void (*)(void *))Fl_Tooltip::tooltip_exit; float Fl_Tooltip::delay_ = 0.5; Fl_TooltipBox *Fl_Tooltip::box = 0; Fl_Menu_Window *Fl_Tooltip::window = 0; @@ -189,5 +189,5 @@ Fl_Tooltip::tooltip_timeout(void *v) { // -// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.8 2001/11/28 20:43:44 easysw Exp $". +// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.9 2001/11/28 20:48:49 easysw Exp $". // |
