]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/sysopt.h
Make wxPGValidationInfo class instead of struct, re-document it (used at least by...
[wxWidgets.git] / interface / wx / sysopt.h
index 1c8286536aad34a06881a661105ebd4f406cde61..f29badc459494c0fe0762790673fb2d6469470b3 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxSystemOptions
-    @wxheader{sysopt.h}
 
     wxSystemOptions stores option/value pairs that wxWidgets itself or
     applications can use to alter behaviour at run-time. It can be
@@ -39,7 +38,7 @@ public:
         @see SetOption(), GetOptionInt(),
              HasOption()
     */
-    wxString GetOption(const wxString& name) const;
+    static wxString GetOption(const wxString& name);
 
     /**
         Gets an option as an integer. The function is case-insensitive to @e name.
@@ -48,7 +47,7 @@ public:
         @see SetOption(), GetOption(),
              HasOption()
     */
-    int GetOptionInt(const wxString& name) const;
+    static int GetOptionInt(const wxString& name);
 
     /**
         Returns @true if the given option is present. The function is
@@ -57,7 +56,7 @@ public:
         @see SetOption(), GetOption(),
              GetOptionInt()
     */
-    bool HasOption(const wxString& name) const;
+    static bool HasOption(const wxString& name);
 
     /**
         Returns @true if the option with the given @a name had been set to 0
@@ -65,7 +64,7 @@ public:
         @c GetOptionInt(name) == 0 as this would also be @true if the option
         hadn't been set at all.
     */
-    bool IsFalse(const wxString& name) const;
+    static bool IsFalse(const wxString& name);
 
     //@{
     /**