diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 3 | ||||
| -rw-r--r-- | FL/mac.H | 1 | ||||
| -rw-r--r-- | FL/win32.H | 1 | ||||
| -rw-r--r-- | FL/x.H | 1 |
4 files changed, 2 insertions, 4 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index 8f167d3a1..61f5abc8f 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -52,6 +52,7 @@ public: Fl_Window_Driver(Fl_Window *); virtual ~Fl_Window_Driver(); static Fl_Window_Driver *newWindowDriver(Fl_Window *); + int wait_for_expose_value; // --- frequently used accessors to public window data /** returns the x coordinate of the window. */ @@ -119,7 +120,7 @@ public: virtual void label(const char *name, const char *mininame); virtual Fl_X *makeWindow() { /* FIXME: move Fl_X::make(Fl_Window*) here for OSX, MSWin, and X11 */ return 0; } - virtual void wait_for_expose() {} + virtual void wait_for_expose(); virtual void destroy_double_buffer(); virtual void show(); virtual void show_menu(); @@ -128,7 +128,6 @@ public: Fl_Window *w; // FLTK window for Fl_Region region; Fl_X *next; // chain of mapped windows - int wait_for_expose; static Fl_X* first; static Fl_X* i(const Fl_Window* w) {return (Fl_X*)w->i;} static int fake_X_wm(const Fl_Window*,int&,int&,int&,int&,int&); diff --git a/FL/win32.H b/FL/win32.H index 518d2ef78..4b28dd245 100644 --- a/FL/win32.H +++ b/FL/win32.H @@ -54,7 +54,6 @@ public: Fl_Window* w; Fl_Region region; Fl_X *next; - int wait_for_expose; HDC private_dc; // used for OpenGL HDC saved_hdc; // saves the handle of the DC currently loaded // static variables, static functions and member functions @@ -117,7 +117,6 @@ public: Fl_Window *w; Fl_Region region; Fl_X *next; - char wait_for_expose; static Fl_X* first; static Fl_X* i(const Fl_Window* wi) {return wi->i;} static void make_xid(Fl_Window*,XVisualInfo* =fl_visual, Colormap=fl_colormap); |
