diff options
Diffstat (limited to 'src/Fl_Single_Window.cxx')
| -rw-r--r-- | src/Fl_Single_Window.cxx | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/src/Fl_Single_Window.cxx b/src/Fl_Single_Window.cxx index 3f5b55aeb..fd871a3b8 100644 --- a/src/Fl_Single_Window.cxx +++ b/src/Fl_Single_Window.cxx @@ -24,8 +24,30 @@ #include <FL/Fl_Single_Window.H> -void Fl_Single_Window::show() {Fl_Window::show();} -void Fl_Single_Window::flush() {Fl_Window::flush();} + +void Fl_Single_Window::show() +{ + Fl_Window::show(); +} + + +void Fl_Single_Window::flush() +{ + Fl_Window::flush(); +} + + +Fl_Single_Window::Fl_Single_Window(int W, int H, const char *l) +: Fl_Window(W,H,l) +{ +} + + +Fl_Single_Window::Fl_Single_Window(int X, int Y, int W, int H, const char *l) +: Fl_Window(X,Y,W,H,l) +{ +} + // // End of "$Id$". |
