don't use border styles for windows in wxUniversal

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14317 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-02-20 00:52:19 +00:00
parent cfa822b8f1
commit d1fe917ba0

View File

@ -391,8 +391,9 @@ bool wxWindowMSW::Create(wxWindow *parent,
DWORD msflags = WS_VISIBLE | MSWGetCreateWindowFlags(&exstyle);
#ifdef __WXUNIVERSAL__
// no 3d effects, we draw them ourselves
exStyle = 0;
// no borders, we draw them ourselves
exstyle = 0;
msflags &= ~WS_BORDER;
#endif // wxUniversal
if ( style & wxPOPUP_WINDOW )