]> git.saurik.com Git - wxWidgets.git/commitdiff
WinCE fixes.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 9 Sep 2004 13:14:28 +0000 (13:14 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 9 Sep 2004 13:14:28 +0000 (13:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29055 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/toplevel.cpp

index 11b0b43600e38b9d0cce19f8b6ce96d5765fa101..551679062f72a70afa167f755ae713c00ed1a4a1 100644 (file)
@@ -824,7 +824,7 @@ bool wxTopLevelWindowMSW::EnableCloseButton(bool enable)
 {
 #if !defined(__WXMICROWIN__)
     // get system (a.k.a. window) menu
-    HMENU hmenu = ::GetSystemMenu(GetHwnd(), FALSE /* get it */);
+    HMENU hmenu = GetSystemMenu(GetHwnd(), FALSE /* get it */);
     if ( !hmenu )
     {
         // no system menu at all -- ok if we want to remove the close button
@@ -941,8 +941,9 @@ void wxTopLevelWindowMSW::RequestUserAttention(int flags)
 #endif // FLASHW_STOP
     {
         wxUnusedVar(flags);
-
+#ifndef __WXWINCE__
         ::FlashWindow(GetHwnd(), TRUE);
+#endif // __WXWINCE__
     }
 }