diff options
| author | Manolo Gouy <Manolo> | 2011-02-01 15:42:04 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2011-02-01 15:42:04 +0000 |
| commit | 3204979d8b1cca7f699fe63f23e7e56d8eb04b56 (patch) | |
| tree | 23c2447123bf4bb3b1fd7f65b6cfbc6994cf2962 | |
| parent | b313a441cdd1ef8437926d3dc9bdb744b4d36b10 (diff) | |
Some Doxygen doc cleaning.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8355 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl.cxx | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx index 6c11abfad..b7331fd3a 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -640,13 +640,6 @@ Fl_Window* fl_find(Window xid) { 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 @@ Fl_Window* Fl::next_window(const Fl_Window* window) { } /** - 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 ); |
