Author: AlbrechtS
Date: 2008-11-28 01:06:08 -0800 (Fri, 28 Nov 2008)
New Revision: 6531
Log:
STR 2096: Fixed a regression introduced by making Fl_Widget::hide()
virtual (svn -r 6502, STR #396): Windows closed, if minimized.


Modified:
   branches/branch-1.3/src/Fl.cxx

Modified: branches/branch-1.3/src/Fl.cxx
===================================================================
--- branches/branch-1.3/src/Fl.cxx      2008-11-27 20:43:27 UTC (rev 6530)
+++ branches/branch-1.3/src/Fl.cxx      2008-11-28 09:06:08 UTC (rev 6531)
@@ -932,11 +932,11 @@
     return 1;
 
   case FL_SHOW:
-    wi->show(); // this calls Fl_Widget::show(), not Fl_Window::show()
+    wi->Fl_Widget::show(); // this calls Fl_Widget::show(), not 
Fl_Window::show()
     return 1;
 
   case FL_HIDE:
-    wi->hide(); // this calls Fl_Widget::hide(), not Fl_Window::hide()
+    wi->Fl_Widget::hide(); // this calls Fl_Widget::hide(), not 
Fl_Window::hide()
     return 1;
 
   case FL_PUSH:

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

Reply via email to