projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
ba11485
)
don't reset WS_EX_CONTROLPARENT bit in wxNotebook::MSWGetStyle(), this can result...
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 27 Mar 2009 22:37:22 +0000
(22:37 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 27 Mar 2009 22:37:22 +0000
(22:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59897
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/msw/notebook.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/msw/notebook.cpp
b/src/msw/notebook.cpp
index a4ee7df0d4a6863732b773e3706f64bc0f2b1efd..03b371c6297b69f41ab61658399fe51f4be07ea2 100644
(file)
--- a/
src/msw/notebook.cpp
+++ b/
src/msw/notebook.cpp
@@
-418,14
+418,6
@@
WXDWORD wxNotebook::MSWGetStyle(long style, WXDWORD *exstyle) const
else if ( style & wxBK_RIGHT )
tabStyle |= TCS_VERTICAL | TCS_RIGHT;
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;
}
return tabStyle;
}