summaryrefslogtreecommitdiff
path: root/src/Fl_Screen_Driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Screen_Driver.cxx')
-rw-r--r--src/Fl_Screen_Driver.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Screen_Driver.cxx b/src/Fl_Screen_Driver.cxx
index bba7d8cf7..1b4a3be1f 100644
--- a/src/Fl_Screen_Driver.cxx
+++ b/src/Fl_Screen_Driver.cxx
@@ -53,7 +53,7 @@ int Fl_Screen_Driver::visual(int) {
void Fl_Screen_Driver::screen_xywh(int &X, int &Y, int &W, int &H)
{
int x, y;
- Fl::get_mouse(x, y);
+ get_mouse(x, y);
screen_xywh(X, Y, W, H, x, y);
}
@@ -67,7 +67,7 @@ void Fl_Screen_Driver::screen_xywh(int &X, int &Y, int &W, int &H, int mx, int m
void Fl_Screen_Driver::screen_work_area(int &X, int &Y, int &W, int &H)
{
int x, y;
- Fl::get_mouse(x, y);
+ get_mouse(x, y);
screen_work_area(X, Y, W, H, x, y);
}