]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/msgdlg.cpp
run libtiff configure when --with-libtiff=builtin is specified
[wxWidgets.git] / src / msw / msgdlg.cpp
index 83b2d98d22d4b3987ac5eb2417a8f49010f5e4cc..061b9211a2850441e9282fa599e6e98f71eac77d 100644 (file)
@@ -16,6 +16,8 @@
     #pragma hdrstop
 #endif
 
+#if wxUSE_MSGDLG
+
 #include "wx/msgdlg.h"
 
 #ifndef WX_PRECOMP
@@ -109,7 +111,7 @@ int wxMessageDialog::ShowModal()
 #endif // wxUSE_UNICODE
 
     // do show the dialog
-    int msAns = MessageBox(hWnd, message, m_caption, msStyle);
+    int msAns = MessageBox(hWnd, message.wx_str(), m_caption.wx_str(), msStyle);
     int ans;
     switch (msAns)
     {
@@ -132,3 +134,5 @@ int wxMessageDialog::ShowModal()
     }
     return ans;
 }
+
+#endif // wxUSE_MSGDLG