Author: manolo
Date: 2011-02-01 07:42:04 -0800 (Tue, 01 Feb 2011)
New Revision: 8355
Log:
Some Doxygen doc cleaning.

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

Modified: branches/branch-1.3/src/Fl.cxx
===================================================================
--- branches/branch-1.3/src/Fl.cxx      2011-02-01 15:41:04 UTC (rev 8354)
+++ branches/branch-1.3/src/Fl.cxx      2011-02-01 15:42:04 UTC (rev 8355)
@@ -640,13 +640,6 @@
   Returns the first top-level window in the list of shown() windows.  If
   a modal() window is shown this is the top-most modal window, otherwise
   it is the most recent window to get an event.
-  
-  The second form sets the window that is returned by
-  first_window.  The window is removed from wherever it is in the
-  list and inserted at the top.  This is not done if Fl::modal()
-  is on or if the window is not shown(). Because the first window
-  is used to set the "parent" of modal windows, this is often
-  useful.
 */
 Fl_Window* Fl::first_window() {
   Fl_X* i = Fl_X::first;
@@ -663,8 +656,13 @@
 }
 
 /**
-  See Fl_Window* first_window()
-*/
+ Sets the window that is returned by first_window().  
+ The window is removed from wherever it is in the
+ list and inserted at the top.  This is not done if Fl::modal()
+ is on or if the window is not shown(). Because the first window
+ is used to set the "parent" of modal windows, this is often
+ useful.
+ */
 void Fl::first_window(Fl_Window* window) {
   if (!window || !window->shown()) return;
   fl_find( Fl_X::i(window)->xid );

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

Reply via email to