From 0e3585e9b85e6825d588fccc14ea1989c1233fdf Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 18 Sep 2003 11:32:09 +0000 Subject: [PATCH] tool windows shouldn't appear on the taskbar (patch 808350) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@23660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/toplevel.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/msw/toplevel.cpp b/src/msw/toplevel.cpp index 8cd1e2d90a..44aae3b980 100644 --- a/src/msw/toplevel.cpp +++ b/src/msw/toplevel.cpp @@ -198,6 +198,9 @@ WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const { // create the palette-like window *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: