summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-11-07 06:49:40 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-11-07 06:49:40 +0100
commit37bf3835b0b3ce7f4c80924f40735698f057ef6f (patch)
tree5862a10eef97cf3575bfe55b2f29fc5a79ae3270 /src/Fl.cxx
parentb663e272e7f39063a5c1bf744038ded0a7566990 (diff)
Create class Fl_Unix_Screen_Driver used by X11 and Wayland platforms
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 30fe9a968..aa2c9f41e 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -2011,11 +2011,11 @@ int Fl::dnd()
}
int Fl::event_key(int k) {
- return system_driver()->event_key(k);
+ return screen_driver()->event_key(k);
}
int Fl::get_key(int k) {
- return system_driver()->get_key(k);
+ return screen_driver()->get_key(k);
}
void Fl::get_mouse(int &x, int &y) {