]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/notebook.cpp
fix compilation without wxUSE_STREAMS (closes #10900)
[wxWidgets.git] / src / msw / notebook.cpp
index a4ee7df0d4a6863732b773e3706f64bc0f2b1efd..03b371c6297b69f41ab61658399fe51f4be07ea2 100644 (file)
@@ -418,14 +418,6 @@ WXDWORD wxNotebook::MSWGetStyle(long style, WXDWORD *exstyle) const
     else if ( style & wxBK_RIGHT )
         tabStyle |= TCS_VERTICAL | TCS_RIGHT;
 
-    // ex style
-    if ( exstyle )
-    {
-        // note that we never want to have the default WS_EX_CLIENTEDGE style
-        // as it looks too ugly for the notebooks
-        *exstyle = 0;
-    }
-
     return tabStyle;
 }