]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/msgdlg.cpp
Alwayas use SetValue in Create so m_date will be in sync
[wxWidgets.git] / src / msw / msgdlg.cpp
index d641c6a3d5a832b6fff150a1717b2c6cc751741d..d19261705ed730d96042b655c1bbce0f06e51375 100644 (file)
     #pragma hdrstop
 #endif
 
+#include "wx/msgdlg.h"
+
 #ifndef WX_PRECOMP
     #include "wx/app.h"
     #include "wx/utils.h"
     #include "wx/dialog.h"
-    #include "wx/msgdlg.h"
 #endif
 
 #include "wx/msw/private.h"
@@ -96,6 +97,11 @@ int wxMessageDialog::ShowModal()
     if ( wxStyle & wxSTAY_ON_TOP )
         msStyle |= MB_TOPMOST;
 
+#ifndef __WXWINCE__
+    if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
+        msStyle |= MB_RTLREADING | MB_RIGHT;
+#endif
+
     if (hWnd)
         msStyle |= MB_APPLMODAL;
     else