]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/propdlg.h
Fixed and clarified editor control event handling
[wxWidgets.git] / interface / wx / propdlg.h
index 80589541a8124bf159257533ea769ec8ccec79fa..b2a45243c1ab2b2515cc9988c367eb443268a5d9 100644 (file)
@@ -74,7 +74,7 @@ enum wxPropertySheetDialogFlags
     bool MyPropertySheetDialog::Create(...)
     {
         if (!wxPropertySheetDialog::Create(...))
-            return @false;
+            return false;
 
         CreateButtons(wxOK|wxCANCEL|wxHELP);
 
@@ -83,7 +83,7 @@ enum wxPropertySheetDialogFlags
         GetBookCtrl()->AddPage(panel, wxT("General"));
 
         LayoutDialog();
-        return @true;
+        return true;
     }
     @endcode