]> git.saurik.com Git - wxWidgets.git/commitdiff
code changed along msw lines
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 9 Feb 2003 08:56:54 +0000 (08:56 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 9 Feb 2003 08:56:54 +0000 (08:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dialog.cpp
src/mac/dialog.cpp

index 1ef72057f85f727c1a4ca29b896129a00155ca5d..b0daaad6850f69ae8d34b4e44b1db34cd61ed397 100644 (file)
@@ -209,9 +209,13 @@ void wxDialog::DoShowModal()
 // Replacement for Show(TRUE) for modal dialogs - returns return code
 int wxDialog::ShowModal()
 {
-  m_windowStyle |= wxDIALOG_MODAL;
-  Show(TRUE);
-  return GetReturnCode();
+       if ( !IsModal() )
+       {
+           SetModal(TRUE);
+       }
+
+       Show(TRUE);
+       return GetReturnCode();
 }
 
 // NB: this function (surprizingly) may be called for both modal and modeless
index 1ef72057f85f727c1a4ca29b896129a00155ca5d..b0daaad6850f69ae8d34b4e44b1db34cd61ed397 100644 (file)
@@ -209,9 +209,13 @@ void wxDialog::DoShowModal()
 // Replacement for Show(TRUE) for modal dialogs - returns return code
 int wxDialog::ShowModal()
 {
-  m_windowStyle |= wxDIALOG_MODAL;
-  Show(TRUE);
-  return GetReturnCode();
+       if ( !IsModal() )
+       {
+           SetModal(TRUE);
+       }
+
+       Show(TRUE);
+       return GetReturnCode();
 }
 
 // NB: this function (surprizingly) may be called for both modal and modeless