]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/propdlg.h
generate a size event from ShowWithEffect() for consistency with Show()
[wxWidgets.git] / interface / wx / propdlg.h
index 77cd2f43edae56e01ac81b7378c6058a06550559..b2a45243c1ab2b2515cc9988c367eb443268a5d9 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