git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73604 
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
 class wxPreferencesPage
 {
 public:
+    /// Constructor.
+    wxPreferencesPage();
+
     /// Destructor.
-    virtual ~wxPreferencesPage() {}
+    virtual ~wxPreferencesPage();
 
     /**
         Return name of the page.
     };
 
     /// 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;