]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/preferences.h
Fix a typo in wxNumberFormatter styles documentation.
[wxWidgets.git] / interface / wx / preferences.h
index 222419e035e925af79f3d9e8920eed6f1686d40c..074a31ca9497d53535effdd81e4fc8be0c19fcb1 100644 (file)
@@ -112,8 +112,11 @@ public:
 class wxPreferencesPage
 {
 public:
+    /// Constructor.
+    wxPreferencesPage();
+
     /// Destructor.
-    virtual ~wxPreferencesPage() {}
+    virtual ~wxPreferencesPage();
 
     /**
         Return name of the page.
@@ -184,10 +187,10 @@ public:
     };
 
     /// Constructor.
-    wxStockPreferencesPage(Kind kind) : m_kind(kind) {}
+    wxStockPreferencesPage(Kind kind);
 
     /// Returns the page's kind.
-    Kind GetKind() const { return m_kind; }
+    Kind GetKind() const;
 
     /// Reimplemented to return suitable name for the page's kind.
     virtual wxString GetName() const;