diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-02-13 16:12:57 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-02-13 16:12:57 +0000 |
| commit | d8f96b579d9359f62b984b2043a8f8c6854efe98 (patch) | |
| tree | 00b5fa4cd4a195aa82431b0c211a717d6e4b6d86 /src/Fl_Screen_Driver.cxx | |
| parent | 4af616a7a27c3104938bf580502c762becd4417b (diff) | |
Moed Fl::visual and System_Scheme to the driver
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11166 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Screen_Driver.cxx')
| -rw-r--r-- | src/Fl_Screen_Driver.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Fl_Screen_Driver.cxx b/src/Fl_Screen_Driver.cxx index 38ba38f3c..dcaad6571 100644 --- a/src/Fl_Screen_Driver.cxx +++ b/src/Fl_Screen_Driver.cxx @@ -38,6 +38,12 @@ void Fl_Screen_Driver::display(const char *) { } +int Fl_Screen_Driver::visual(int) { + // blank + return 1; +} + + void Fl_Screen_Driver::screen_xywh(int &X, int &Y, int &W, int &H) { int x, y; @@ -128,6 +134,11 @@ int Fl_Screen_Driver::screen_num(int x, int y, int w, int h) } +const char *Fl_Screen_Driver::get_system_scheme() +{ + return 0L; +} + // // End of "$Id$". |
