]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/bookctrl.h
Remove the Innotek for OS/2 addition...configure now deals with this correctly on...
[wxWidgets.git] / include / wx / bookctrl.h
index 51761208cb28f60c73e98023040c5e6106efd110..26f1f2d31ce1162fd43adf1a50e0bf94b13e546b 100644 (file)
@@ -41,14 +41,22 @@ public:
     // construction
     // ------------
 
-    wxBookCtrl();
+    wxBookCtrl()
+    {
+        Init();
+    }
 
     wxBookCtrl(wxWindow *parent,
                wxWindowID winid,
                const wxPoint& pos = wxDefaultPosition,
                const wxSize& size = wxDefaultSize,
                long style = 0,
-               const wxString& name = wxEmptyString);
+               const wxString& name = wxEmptyString)
+    {
+        Init();
+
+        (void)Create(parent, winid, pos, size, style, name);
+    }
 
     // quasi ctor
     bool Create(wxWindow *parent,