X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5c9627778e8ba6e1a1358dbc6a737b6163cfbc0..661698e54f2bc599dc1a961ffbae08ccdd6b9b97:/include/wx/preferences.h diff --git a/include/wx/preferences.h b/include/wx/preferences.h index ab1e0a2c99..fb6387a075 100644 --- a/include/wx/preferences.h +++ b/include/wx/preferences.h @@ -93,7 +93,9 @@ class WXDLLIMPEXP_CORE wxPreferencesEditor public: // Ctor creates an empty editor, use AddPage() to add controls to it. wxPreferencesEditor(const wxString& title = wxString()); - ~wxPreferencesEditor(); + + // Dtor destroys the dialog if still shown. + virtual ~wxPreferencesEditor(); // Add a new page to the editor. The editor takes ownership of the page // and won't delete it until it is destroyed itself. @@ -104,8 +106,7 @@ public: // platform, i.e. depending on whether the dialog is modal or not. virtual void Show(wxWindow* parent); - // Hide the currently shown dialog, if any. This doesn't do anything on the - // platforms using modal preferences dialogs but should be called to + // Hide the currently shown dialog, if any. This is typically used to // dismiss the dialog if the object whose preferences it is editing was // closed. void Dismiss();