From: Robin Dunn Date: Tue, 5 Mar 2013 06:50:37 +0000 (+0000) Subject: Minor tweaks to the preferences docs for Phoenix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a150fade15ca4ff8166fd3fe7b8d7e9ee4eed0ae Minor tweaks to the preferences docs for Phoenix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/preferences.h b/interface/wx/preferences.h index 222419e035..074a31ca94 100644 --- a/interface/wx/preferences.h +++ b/interface/wx/preferences.h @@ -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;