diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-03-12 23:44:57 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-03-12 23:44:57 +0000 |
| commit | 5953f5a695979d523e460dbd8b7f4ae7d1b05001 (patch) | |
| tree | 22e267cd8b96d3736502a3c3961200a0683fdd2f /src/Fl_Double_Window.cxx | |
| parent | e6631a0f7fdc8d3383927bac49f521791cddcc9c (diff) | |
Quick fix for Fluid on X11. MSWindows version broken due to missing Fl_Printer::Helper::Helper
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11357 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Double_Window.cxx')
| -rw-r--r-- | src/Fl_Double_Window.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Fl_Double_Window.cxx b/src/Fl_Double_Window.cxx index 8edb316b8..49e890e22 100644 --- a/src/Fl_Double_Window.cxx +++ b/src/Fl_Double_Window.cxx @@ -32,7 +32,7 @@ Fl_Double_Window::Fl_Double_Window(int W, int H, const char *l) -: Fl_Window(0, 0, W, H, l, Fl_Window_Driver::newWindowDriver(this)) +: Fl_Window(0, 0, W, H, l) { type(FL_DOUBLE_WINDOW); clear_flag(FORCE_POSITION); @@ -40,12 +40,7 @@ Fl_Double_Window::Fl_Double_Window(int W, int H, const char *l) Fl_Double_Window::Fl_Double_Window(int X, int Y, int W, int H, const char *l) -: Fl_Window(X,Y,W,H,l, Fl_Window_Driver::newWindowDriver(this)) -{ - type(FL_DOUBLE_WINDOW); -} - -Fl_Double_Window::Fl_Double_Window(int x, int y, int w, int h, const char* title, Fl_Window_Driver *driver) : Fl_Window(x,y,w,h,title, driver) +: Fl_Window(X,Y,W,H,l) { type(FL_DOUBLE_WINDOW); } @@ -60,10 +55,15 @@ void Fl_Double_Window::show() { return Fl_Display_Device::display_device()->driver()->can_do_alpha_blending(); }*/ + /** Forces the window to be redrawn. */ -void Fl_Double_Window::flush() {flush(0);} +void Fl_Double_Window::flush() +{ + flush(0); +} + /** Forces the window to be redrawn. |
