diff options
| author | Greg Ercolano <erco@seriss.com> | 2012-07-26 00:40:37 +0000 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2012-07-26 00:40:37 +0000 |
| commit | 71a2e6dd329c3fb56a0b9889fb44d958e11b2e20 (patch) | |
| tree | 9ff5e8c97b00e748ffc52f586991ebccb2500603 /FL | |
| parent | dd966cb135ab7a1a25c7cf54b4439fb4a179fa91 (diff) | |
Doc fixes for resize() and fullscreen_off():
added variable names to prototypes so doxygen will doc them properly.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9645 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Window.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H index 959508bff..84f706823 100644 --- a/FL/Fl_Window.H +++ b/FL/Fl_Window.H @@ -185,7 +185,7 @@ public: dimensions. It is up to the application developer to verify window parameters after the resize request. */ - virtual void resize(int,int,int,int); + virtual void resize(int X,int Y,int W,int H); /** Sets whether or not the window manager border is around the window. The default value is true. void border(int) can be @@ -419,7 +419,7 @@ public: Turns off any side effects of fullscreen() and does resize(x,y,w,h). */ - void fullscreen_off(int,int,int,int); + void fullscreen_off(int X,int Y,int W,int H); /** Returns non zero if FULLSCREEN flag is set, 0 otherwise. */ |
