diff options
| author | Manolo Gouy <Manolo> | 2016-04-18 17:02:44 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-04-18 17:02:44 +0000 |
| commit | c0f14ca2f00b1ea026298b0efa91c8b6afb13244 (patch) | |
| tree | 93fefd3de4cc8c73d56e18f2052ded34566dc1c9 /FL | |
| parent | e790ac96536503c2f89a894f6bda1d5a21fab05d (diff) | |
Move other_xid member variable from class Fl_X to class F_Window_Driver.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11654 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 1 | ||||
| -rw-r--r-- | FL/mac.H | 1 | ||||
| -rw-r--r-- | FL/win32.H | 1 | ||||
| -rw-r--r-- | FL/x.H | 1 |
4 files changed, 1 insertions, 3 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index 61f5abc8f..67fc2dfb3 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -53,6 +53,7 @@ public: virtual ~Fl_Window_Driver(); static Fl_Window_Driver *newWindowDriver(Fl_Window *); int wait_for_expose_value; + Fl_Offscreen other_xid; // offscreen bitmap (overlay and double-buffered windows) // --- frequently used accessors to public window data /** returns the x coordinate of the window. */ @@ -124,7 +124,6 @@ extern NSCursor *fl_default_cursor; class Fl_X { public: Window xid; // pointer to the Cocoa window object (FLWindow*) - Fl_Offscreen other_xid; // pointer for offscreen bitmaps (overlay window) Fl_Window *w; // FLTK window for Fl_Region region; Fl_X *next; // chain of mapped windows diff --git a/FL/win32.H b/FL/win32.H index 4b28dd245..0e31dc3ab 100644 --- a/FL/win32.H +++ b/FL/win32.H @@ -50,7 +50,6 @@ class FL_EXPORT Fl_X { public: // member variables - add new variables only at the end of this block Window xid; - HBITMAP other_xid; // for double-buffered windows Fl_Window* w; Fl_Region region; Fl_X *next; @@ -113,7 +113,6 @@ extern FL_EXPORT Fl_XFont_On_Demand fl_xfont; class FL_EXPORT Fl_X { public: Window xid; - Window other_xid; Fl_Window *w; Fl_Region region; Fl_X *next; |
