tool windows shouldn't appear on the taskbar (patch 808350)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-09-18 11:32:09 +00:00
parent 933b675ed4
commit 404a4d9363

View File

@@ -220,6 +220,9 @@ WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const
{ {
// create the palette-like window // create the palette-like window
*exflags |= WS_EX_TOOLWINDOW; *exflags |= WS_EX_TOOLWINDOW;
// tool windows shouldn't appear on the taskbar (as documented)
style |= wxFRAME_NO_TASKBAR;
} }
// We have to solve 2 different problems here: // We have to solve 2 different problems here: