]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/cmdline.h
add default parameters for width and style parameters of FindOrCreatePen() for consis...
[wxWidgets.git] / interface / cmdline.h
index a3d69f084673a0ca91738a676a908c6e4d16538c..56cd319a2b9502286e6ce33d37b4148f93fd3c4f 100644 (file)
@@ -104,7 +104,7 @@ public:
 
     /**
         Returns @true if long options are enabled, otherwise @false.
-        
+
         @see EnableLongOptions()
     */
     bool AreLongOptionsEnabled() const;
@@ -174,7 +174,7 @@ public:
         Enable or disable support for the long options.
         As long options are not (yet) POSIX-compliant, this option allows to disable
         them.
-        
+
         @see Customization() and AreLongOptionsEnabled()
     */
     void EnableLongOptions(bool enable = true);
@@ -185,9 +185,10 @@ public:
         value in the provided pointer (which should not be @NULL).
     */
     bool Found(const wxString& name) const;
-    const bool Found(const wxString& name, wxString* value) const;
-    const bool Found(const wxString& name, long* value) const;
-    const bool Found(const wxString& name, wxDateTime* value) const;
+    bool Found(const wxString& name, wxString* value) const;
+    bool Found(const wxString& name, long* value) const;
+    bool Found(const wxString& name, double* value) const;
+    bool Found(const wxString& name, wxDateTime* value) const;
     //@}
 
     /**
@@ -218,7 +219,7 @@ public:
         Parse the command line, return 0 if ok, -1 if @c "-h" or @c "--help"
         option was encountered and the help message was given or a positive value if a
         syntax error occurred.
-        
+
         @param giveUsage
             If @true (default), the usage message is given if a
             syntax error was encountered while parsing the command line or if help was
@@ -272,7 +273,7 @@ public:
         Give the standard usage message describing all program options. It will use the
         options and parameters descriptions specified earlier, so the resulting message
         will not be helpful to the user unless the descriptions were indeed specified.
-        
+
         @see SetLogo()
     */
     void Usage() const;