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
This commit is contained in:
Greg Ercolano 2012-07-26 00:40:37 +00:00
parent dd966cb135
commit 71a2e6dd32
1 changed files with 2 additions and 2 deletions

View File

@ -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.
*/