Author: manolo
Date: 2012-04-09 02:12:34 -0700 (Mon, 09 Apr 2012)
New Revision: 9331
Log:
Removed Fl_Widget::is_fullscreen() that is just another name for 
Fl_Window::fullscreen_active()

Modified:
   branches/branch-1.3/FL/Fl_Widget.H
   branches/branch-1.3/src/Fl_win32.cxx

Modified: branches/branch-1.3/FL/Fl_Widget.H
===================================================================
--- branches/branch-1.3/FL/Fl_Widget.H  2012-04-09 08:53:49 UTC (rev 9330)
+++ branches/branch-1.3/FL/Fl_Widget.H  2012-04-09 09:12:34 UTC (rev 9331)
@@ -687,11 +687,6 @@
    */
   void clear_visible() {flags_ |= INVISIBLE;}
 
-  /** Returns whether the widget is in full screen mode
-      \retval non 0 if in full screen mode
-   */
-  unsigned int is_fullscreen() const {return (flags_ & FULLSCREEN);}
-
   /** Returns whether the widget is active.
       \retval 0 if the widget is inactive
       \see active_r(), activate(), deactivate()

Modified: branches/branch-1.3/src/Fl_win32.cxx
===================================================================
--- branches/branch-1.3/src/Fl_win32.cxx        2012-04-09 08:53:49 UTC (rev 
9330)
+++ branches/branch-1.3/src/Fl_win32.cxx        2012-04-09 09:12:34 UTC (rev 
9331)
@@ -1316,7 +1316,7 @@
   X+=xoff;
   Y+=yoff;
 
-  if (w->is_fullscreen()) {
+  if (w->fullscreen_active()) {
     X = Y = 0;
     bx = by = bt = 0;
   }
@@ -1628,7 +1628,7 @@
   );
   if (lab) free(lab);
 
-  if (w->is_fullscreen()) {
+  if (w->fullscreen_active()) {
   /* We need to make sure that the fullscreen is created on the
      default monitor, ie the desktop where the shortcut is located
      etc. This requires that CreateWindow is called with CW_USEDEFAULT

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

Reply via email to