summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-18 17:02:44 +0000
committerManolo Gouy <Manolo>2016-04-18 17:02:44 +0000
commitc0f14ca2f00b1ea026298b0efa91c8b6afb13244 (patch)
tree93fefd3de4cc8c73d56e18f2052ded34566dc1c9 /FL
parente790ac96536503c2f89a894f6bda1d5a21fab05d (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.H1
-rw-r--r--FL/mac.H1
-rw-r--r--FL/win32.H1
-rw-r--r--FL/x.H1
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. */
diff --git a/FL/mac.H b/FL/mac.H
index b1a40ee11..95a20f767 100644
--- a/FL/mac.H
+++ b/FL/mac.H
@@ -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;
diff --git a/FL/x.H b/FL/x.H
index b90964108..5bf928afe 100644
--- a/FL/x.H
+++ b/FL/x.H
@@ -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;