From 53aced3dbdb75242ec0e1fa1568e59e98c03f067 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Wed, 30 Mar 2016 04:38:27 +0000 Subject: Add an explicative comment. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11471 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_System_Driver.H | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FL/Fl_System_Driver.H b/FL/Fl_System_Driver.H index ec5972e3e..a6ba67298 100644 --- a/FL/Fl_System_Driver.H +++ b/FL/Fl_System_Driver.H @@ -62,6 +62,8 @@ public: virtual ~Fl_System_Driver(); // copy the implementation in Fl_XXX_System_Driver.cxx to the corresponding file for the new platform static Fl_System_Driver *driver(); + // These flags are useful after calling XParseGeometry(). They indicate which of its arguments + // contain meaningful data upon return. static const int flNoValue; static const int flWidthValue; static const int flHeightValue; @@ -76,7 +78,7 @@ public: // implement to process the -display argument virtual void display_arg(const char *arg) { } // default implementation should be enough - virtual int XParseGeometry(const char*, int*, int*, unsigned int*, unsigned int*); + virtual int XParseGeometry(const char* string, int* x, int* y, unsigned int* width, unsigned int* height); static void warning(const char* format, ...); // implement to set the default effect of Fl::warning() virtual void warning(const char* format, va_list args); -- cgit v1.2.3