summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorFabien Costantini <fabien@onepost.net>2008-10-04 15:27:12 +0000
committerFabien Costantini <fabien@onepost.net>2008-10-04 15:27:12 +0000
commit7fc0d4903ddf8c10ce1b87880bc3832c405e713d (patch)
treebb0e7379588e8707990faf15a848615f5a78fd2e /FL
parentbfac12dbfad45c400fc77fedb0dbeca315b0960f (diff)
Corrected comment inversion in fl screen_xywh() api.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6373 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl.H7
1 files changed, 6 insertions, 1 deletions
diff --git a/FL/Fl.H b/FL/Fl.H
index d9413a8ae..13655e746 100644
--- a/FL/Fl.H
+++ b/FL/Fl.H
@@ -604,7 +604,12 @@ public:
// multi-head support:
static int screen_count();
- /** See void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my) */
+ /**
+ Gets the bounding box of a screen
+ that contains the mouse pointer in.
+ \param[out] X,Y,W,H the corresponding screen bounding box
+ \see 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) {
screen_xywh(X, Y, W, H, e_x_root, e_y_root);
}