diff options
| -rw-r--r-- | FL/Fl_Widget.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Widget.H b/FL/Fl_Widget.H index 987e850db..5f51924e5 100644 --- a/FL/Fl_Widget.H +++ b/FL/Fl_Widget.H @@ -623,12 +623,12 @@ public: * * \see hide(), visible(), visible_r() */ - void show(); + virtual void show(); /** Makes a widget invisible. * \see show(), visible(), visible_r() */ - void hide(); + virtual void hide(); /** Makes the widget visible. * You must still redraw the parent widget to see a change in the |
