Author: manolo
Date: 2011-10-04 01:08:24 -0700 (Tue, 04 Oct 2011)
New Revision: 9121
Log:
Fixed erroneous left-overs from 1.3.

Modified:
   branches/branch-3.0/src/fltk3/screen_xywh.cxx

Modified: branches/branch-3.0/src/fltk3/screen_xywh.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/screen_xywh.cxx       2011-10-03 09:22:57 UTC 
(rev 9120)
+++ branches/branch-3.0/src/fltk3/screen_xywh.cxx       2011-10-04 08:08:24 UTC 
(rev 9121)
@@ -234,7 +234,7 @@
 /**
  Gets the bounding box of the work area of the given screen.
  \param[out]  X,Y,W,H the work area bounding box
- \param[in] n the screen number (0 to Fl::screen_count() - 1)
+ \param[in] n the screen number (0 to fltk3::screen_count() - 1)
  \see void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my)
  */
 void fltk3::screen_work_area(int &X, int &Y, int &W, int &H, int n) {
@@ -249,10 +249,10 @@
   Fl_X::screen_work_area(X, Y, W, H, n);
 #else
   if (n == 0) { // for the main screen, these return the work area
-    X = Fl::x();
-    Y = Fl::y();
-    W = Fl::w();
-    H = Fl::h();
+    X = fltk3::x();
+    Y = fltk3::y();
+    W = fltk3::w();
+    H = fltk3::h();
   }
   else { // for other screens, work area is full screen,
     screen_xywh(X, Y, W, H, n);
@@ -264,7 +264,7 @@
  Gets the screen bounding rect for the given screen. 
  Under MSWindows, Mac OS X, and the Gnome desktop, screen #0 contains the 
menubar/taskbar
  \param[out]  X,Y,W,H the corresponding screen bounding box
- \param[in] n the screen number (0 to Fl::screen_count() - 1)
+ \param[in] n the screen number (0 to fltk3::screen_count() - 1)
  \see void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my) 
  */
 void fltk3::screen_xywh(int &X, int &Y, int &W, int &H, int n) {

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to