]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/msgdlg.cpp
make sure we are comparing the stripped strings
[wxWidgets.git] / src / msw / msgdlg.cpp
index 3b5517b828914592bdb5f51821ca7a27743cb323..6ea59bcfddb6699e697080d8250d9294882e49b2 100644 (file)
@@ -9,7 +9,7 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "msgdlg.h"
 #endif
 
 
 #include "wx/msw/private.h"
 
+// For MB_TASKMODAL
+#ifdef __WXWINCE__
+#include "wx/msw/wince/missing.h"
+#endif
+
 IMPLEMENT_CLASS(wxMessageDialog, wxDialog)
 
 wxMessageDialog::wxMessageDialog(wxWindow *parent,
@@ -104,10 +109,8 @@ int wxMessageDialog::ShowModal()
 
     if (hWnd)
         msStyle |= MB_APPLMODAL;
-#ifndef __WXWINCE__
     else
         msStyle |= MB_TASKMODAL;
-#endif
 
     // do show the dialog
     int msAns = MessageBox(hWnd, m_message.c_str(), m_caption.c_str(), msStyle);