]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/propdlg.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / propdlg.h
index 07af2d11eaeb91c6950c3419bc5cf6d1f01a00b5..dd953cce0d335b3d1ef52959e680e67700219dca 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        propdlg.h
 // Purpose:     interface of wxPropertySheetDialog
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
@@ -80,7 +79,7 @@ enum wxPropertySheetDialogFlags
 
         // Add page
         wxPanel* panel = new wxPanel(GetBookCtrl(), ...);
-        GetBookCtrl()->AddPage(panel, wxT("General"));
+        GetBookCtrl()->AddPage(panel, "General");
 
         LayoutDialog();
         return true;
@@ -182,13 +181,6 @@ public:
     */
     void SetBookCtrl(wxBookCtrlBase* bookCtrl);
 
-    /**
-        Sets the inner sizer that contains the book control and button sizer.
-
-        You will normally not need to use this.
-    */
-    void SetInnerSizer(wxSizer* sizer);
-
     /**
         You can customize the look and feel of the dialog by setting the sheet style.
         It is a bit list of the ::wxPropertySheetDialogFlags values.