Some Doxygen doc cleaning.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8355 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy
2011-02-01 15:42:04 +00:00
parent b313a441cd
commit 3204979d8b
+7 -9
View File
@@ -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 );