]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
crash in GTK 1.0 on multiline text ctrl creation fixed
[wxWidgets.git] / src / msw / notebook.cpp
index 4a1d57d6b73fdaab1ae52c62b615fa8c4f54463e..049703b142c66e62549e1f3eabb5eeb5d8d506c6 100644 (file)
@@ -133,7 +133,10 @@ bool wxNotebook::Create(wxWindow *parent,
   // style
   m_windowStyle = style | wxTAB_TRAVERSAL;
 
   // style
   m_windowStyle = style | wxTAB_TRAVERSAL;
 
-  long tabStyle = WS_CHILD | WS_VISIBLE | WS_TABSTOP | TCS_TABS | WS_CLIPCHILDREN;
+  long tabStyle = WS_CHILD | WS_VISIBLE | WS_TABSTOP | TCS_TABS;
+
+  if (m_windowStyle & wxCLIP_CHILDREN)
+    tabStyle |= WS_CLIPCHILDREN;
   if ( m_windowStyle & wxTC_MULTILINE )
     tabStyle |= TCS_MULTILINE;
   if ( m_windowStyle & wxBORDER )
   if ( m_windowStyle & wxTC_MULTILINE )
     tabStyle |= TCS_MULTILINE;
   if ( m_windowStyle & wxBORDER )