]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
removed dialup from list of files because of compilation problem with
[wxWidgets.git] / src / msw / notebook.cpp
index 426b8af2a082a109860a4160dc0185009c53577d..ff201a3ec900125ddcd888cd6acc48d77ac39f81 100644 (file)
@@ -46,7 +46,7 @@
     #endif
 #endif
 
-#if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) || defined(__TWIN32__))
+#if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
     #include <commctrl.h>
 #endif
 
@@ -153,6 +153,8 @@ bool wxNotebook::Create(wxWindow *parent,
 
   long tabStyle = WS_CHILD | WS_VISIBLE | WS_TABSTOP | TCS_TABS;
 
+  if ( m_windowStyle & wxCLIP_SIBLINGS )
+    tabStyle |= WS_CLIPSIBLINGS;
   if (m_windowStyle & wxCLIP_CHILDREN)
     tabStyle |= WS_CLIPCHILDREN;
   if ( m_windowStyle & wxTC_MULTILINE )