summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2007-05-20 16:18:31 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2007-05-20 16:18:31 +0000
commitd8c288df3e51f156e9900313ec33b3d4c8ae3f84 (patch)
tree8b01921f52c6e04a28aa735a3fc05141c5de4c09 /FL
parent56a50b9f0e7d47cfda34afe7e19dd51c08e3d9ba (diff)
Fix compiler warnings/errors.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5848 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl.H8
1 files changed, 4 insertions, 4 deletions
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);