diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-24 12:30:00 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-24 12:30:00 +0000 |
| commit | f87f7a7b1491efaeb52128b393e73c3a2ca4f733 (patch) | |
| tree | e232a5d45dcfc86035564f1700aef2dfefbe90cc | |
| parent | a89ca324a4ba7817be73b71e41c4bb0819dfc3ad (diff) | |
Added set_override() call in Fl_Tooltip_Window constructor.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2105 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_Tooltip.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Tooltip.cxx b/src/Fl_Tooltip.cxx index 607f10588..f0159b4ba 100644 --- a/src/Fl_Tooltip.cxx +++ b/src/Fl_Tooltip.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tooltip.cxx,v 1.38.2.14 2002/04/24 12:20:36 easysw Exp $" +// "$Id: Fl_Tooltip.cxx,v 1.38.2.15 2002/04/24 12:30:00 easysw Exp $" // // Tooltip source file for the Fast Light Tool Kit (FLTK). // @@ -58,7 +58,7 @@ class Fl_Tooltip_Window : public Fl_Menu_Window { FL_EXPORT ~Fl_Tooltip_Window() {} Fl_Tooltip_Window(int W, int H, const char *l = 0) - : Fl_Menu_Window(W,H,l) {} + : Fl_Menu_Window(W,H,l) { set_override(); } Fl_Tooltip_Window(int X, int Y, int W, int H, const char *l = 0) : Fl_Menu_Window(X,Y,W,H,l) {} }; @@ -221,5 +221,5 @@ Fl_Tooltip::tooltip_timeout(void *v) { // -// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.14 2002/04/24 12:20:36 easysw Exp $". +// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.15 2002/04/24 12:30:00 easysw Exp $". // |
