X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..2a8312bced9d3f3415383a79a15cad2acf447b7e:/interface/wx/propdlg.h diff --git a/interface/wx/propdlg.h b/interface/wx/propdlg.h index 77cd2f43ed..37fb44f586 100644 --- a/interface/wx/propdlg.h +++ b/interface/wx/propdlg.h @@ -58,7 +58,6 @@ enum wxPropertySheetDialogFlags /** @class wxPropertySheetDialog - @wxheader{propdlg.h} This class represents a property sheet dialog: a tabbed dialog for showing settings. It is optimized to show flat tabs @@ -75,7 +74,7 @@ enum wxPropertySheetDialogFlags bool MyPropertySheetDialog::Create(...) { if (!wxPropertySheetDialog::Create(...)) - return @false; + return false; CreateButtons(wxOK|wxCANCEL|wxHELP); @@ -84,7 +83,7 @@ enum wxPropertySheetDialogFlags GetBookCtrl()->AddPage(panel, wxT("General")); LayoutDialog(); - return @true; + return true; } @endcode @@ -175,7 +174,7 @@ public: @note On PocketPC, this does nothing, since the dialog will be shown full-screen, and the layout will be done when the dialog receives a size event. */ - void LayoutDialog(int centreFlags = wxBOTH); + virtual void LayoutDialog(int centreFlags = wxBOTH); /** Sets the book control used for the dialog.