From d8c288df3e51f156e9900313ec33b3d4c8ae3f84 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 20 May 2007 16:18:31 +0000 Subject: Fix compiler warnings/errors. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5848 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl.H | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'FL') diff --git a/FL/Fl.H b/FL/Fl.H index 908e45fcb..da592aab0 100644 --- a/FL/Fl.H +++ b/FL/Fl.H @@ -212,11 +212,11 @@ public: // multi-head support: static int screen_count(); - static void screen_xywh(int &x, int &y, int &w, int &h) { - screen_xywh(x, y, w, h, e_x_root, e_y_root); + static void screen_xywh(int &X, int &Y, int &W, int &H) { + screen_xywh(X, Y, W, H, e_x_root, e_y_root); } - static void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my); - static void screen_xywh(int &x, int &y, int &w, int &h, int n); + static void screen_xywh(int &X, int &Y, int &W, int &H, int mx, int my); + static void screen_xywh(int &X, int &Y, int &W, int &H, int n); // color map: static void set_color(Fl_Color, uchar, uchar, uchar); -- cgit v1.2.3