]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/popupwin.cpp
Suppressed some flicker in standard wxToolBar
[wxWidgets.git] / src / msw / popupwin.cpp
index eb811168db18a0d2824a7d4c08915619d986e644..b47741145cf4d9e3723b52bee1b20f7fd805afd5 100644 (file)
@@ -84,7 +84,13 @@ WXHWND wxPopupWindow::MSWGetParent() const
     //     WS_CHILD but then showing a popup would deactivate the parent which
     //     is ugly and working around this, although possible, is even more
     //     ugly
+    // GetDesktopWindow() is not always supported on WinCE, and if
+    // it is, it often returns NULL.
+#ifdef __WXWINCE__
+    return 0;
+#else
     return (WXHWND)::GetDesktopWindow();
+#endif
 }
 
 bool wxPopupWindow::Show(bool show)