]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/msgdlg.cpp
no changes, just de TABified
[wxWidgets.git] / src / msw / msgdlg.cpp
index 41cb6a49a82172d28adff80e58f45281565c8a8f..d19261705ed730d96042b655c1bbce0f06e51375 100644 (file)
@@ -97,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