diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-02-10 20:26:51 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-02-10 20:26:51 +0000 |
| commit | c3b3105720fbe10af88c97c25bc8939659021f07 (patch) | |
| tree | 05f2cd0543a209df99e3b8531bb80477ccf4eb72 /FL | |
| parent | e83bc2527fd412bc235f1f8743659e31b12bdc31 (diff) | |
Fix Screen Driver implementation for X11
- moved stuff around to fit X11 file layout
- fixed a few Cocoa variables
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11149 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Screen_Driver.H | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/FL/Fl_Screen_Driver.H b/FL/Fl_Screen_Driver.H index b7b7e7564..a36934e32 100644 --- a/FL/Fl_Screen_Driver.H +++ b/FL/Fl_Screen_Driver.H @@ -20,7 +20,6 @@ #define FL_SCREEN_DRIVER_H #include <FL/Fl_Device.H> -#include <FL/x.H> class FL_EXPORT Fl_Screen_Driver : public Fl_Device { @@ -30,10 +29,7 @@ protected: static const int MAX_SCREENS = 16; - int num_screens = -1; - XRectangle screens[MAX_SCREENS]; - float dpi_h[MAX_SCREENS]; - float dpi_v[MAX_SCREENS]; + int num_screens; public: static Fl_Screen_Driver *newScreenDriver(); |
