]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
minor additions to wxCmdLineParser tests
[wxWidgets.git] / src / msw / notebook.cpp
index 2022f361f94e22ba4624acf564b972028a3b8114..379f7dea9f80933c5b672547591471f3e2505aba 100644 (file)
@@ -172,9 +172,7 @@ bool wxNotebook::Create(wxWindow *parent,
     tabStyle |= TCS_VERTICAL|TCS_RIGHT;
 
 
-  if ( !MSWCreate(GetId(), GetParent(), WC_TABCONTROL,
-                  this, NULL, pos.x, pos.y, size.x, size.y,
-                  tabStyle, NULL, 0) )
+  if ( !MSWCreateControl(WC_TABCONTROL, tabStyle, pos, size) )
   {
     return FALSE;
   }
@@ -187,8 +185,6 @@ bool wxNotebook::Create(wxWindow *parent,
   if ( parent != NULL )
     parent->AddChild(this);
 
-  SubclassWin(m_hWnd);
-
   return TRUE;
 }