]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
Mutiple updates from SciTech for wxWindows including the following:
[wxWidgets.git] / src / msw / notebook.cpp
index 379f7dea9f80933c5b672547591471f3e2505aba..f3af3b19a439598d8f5e5fb90d5f9c22e553cc50 100644 (file)
@@ -171,8 +171,9 @@ bool wxNotebook::Create(wxWindow *parent,
   if (m_windowStyle & wxNB_RIGHT)
     tabStyle |= TCS_VERTICAL|TCS_RIGHT;
 
-
-  if ( !MSWCreateControl(WC_TABCONTROL, tabStyle, pos, size) )
+  // note that we don't want to have the default WS_EX_CLIENTEDGE style for the
+  // notebook, so explicitly specify 0 as last parameter
+  if ( !MSWCreateControl(WC_TABCONTROL, tabStyle, pos, size, _T(""), 0) )
   {
     return FALSE;
   }