]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/msgdlg.cpp
adaptions to m_peer methods
[wxWidgets.git] / src / msw / msgdlg.cpp
index 6ea59bcfddb6699e697080d8250d9294882e49b2..5ea5ece2aec1ba0c4c68d012714197549c7e222a 100644 (file)
@@ -79,9 +79,11 @@ int wxMessageDialog::ShowModal()
     unsigned int msStyle = MB_OK;
     if (m_dialogStyle & wxYES_NO)
     {
+#if !defined(__SMARTPHONE__)
         if (m_dialogStyle & wxCANCEL)
             msStyle = MB_YESNOCANCEL;
         else
+#endif // __SMARTPHONE__
             msStyle = MB_YESNO;
 
         if (m_dialogStyle & wxNO_DEFAULT)