summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-01-30 08:55:46 +0000
committerManolo Gouy <Manolo>2011-01-30 08:55:46 +0000
commit802aff1785736865957ca7a4870c28ad2e89d9cc (patch)
tree363ee6ee26aa4178ffe682c30f3caaae640b5c02 /FL
parentff39941c20410fa19225d5345f0ef428b5c1b053 (diff)
Minor changes in Doxygen docs of Fl_Window constructors.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8336 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Window.H8
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H
index 6905dce3c..01efa160f 100644
--- a/FL/Fl_Window.H
+++ b/FL/Fl_Window.H
@@ -116,8 +116,8 @@ public:
If Fl_Group::current() is not NULL, the window is created as a
subwindow of the parent window.
- The first form of the constructor creates a top-level window
- and asks the window manager to position the window. The second
+ The (w,h) form of the constructor creates a top-level window
+ and asks the window manager to position the window. The (x,y,w,h)
form of the constructor either creates a subwindow or a
top-level window at the specified location (x,y) , subject to window
manager configuration. If you do not specify the position of the
@@ -137,12 +137,12 @@ public:
change this to FL_NO_BOX. If you turn the window border off
you may want to change this to FL_UP_BOX.
- \see Fl_Window(int x, int y, int w, int h, const char* title = 0)
+ \see Fl_Window(int x, int y, int w, int h, const char* title)
*/
Fl_Window(int w, int h, const char* title= 0);
/** Creates a window from the given position, size and title.
- \see Fl_Window::Fl_Window(int w, int h, const char *title = 0)
+ \see Fl_Window(int w, int h, const char *title)
*/
Fl_Window(int x, int y, int w, int h, const char* title = 0);
/**