]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/propdlg.h
Corrected library association
[wxWidgets.git] / interface / wx / propdlg.h
index 77cd2f43edae56e01ac81b7378c6058a06550559..37df727d2fae82c8a75dc5991234badc6fbd52fb 100644 (file)
@@ -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
 
@@ -150,7 +149,7 @@ public:
 
         @note On PocketPC, no buttons are created.
     */
-    void CreateButtons(int flags = wxOK|wxCANCEL);
+    virtual void CreateButtons(int flags = wxOK|wxCANCEL);
 
     /**
         Returns the book control that will contain your settings pages.
@@ -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.