]> git.saurik.com Git - wxWidgets.git/commitdiff
oops... compilation fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 24 Jul 1999 23:19:03 +0000 (23:19 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 24 Jul 1999 23:19:03 +0000 (23:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3126 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/dialog.cpp

index 0deadd900a27c1c89424d3bb89f1a182247a8bdb..d8ef9f1f46ea809219cf4c07b9c3a86f711c4c28 100644 (file)
@@ -278,12 +278,12 @@ void wxDialog::GetPosition(int *x, int *y) const
 
 bool wxDialog::IsShown() const
 {
 
 bool wxDialog::IsShown() const
 {
-  return wxModalDialogs.Find(this);
+  return m_isShown;
 }
 
 bool wxDialog::IsModal() const
 {
 }
 
 bool wxDialog::IsModal() const
 {
-    return wxModalDialogs.
+    return wxModalDialogs.Find((wxDialog *)this) != 0; // const_cast
 }
 
 bool wxDialog::Show(bool show)
 }
 
 bool wxDialog::Show(bool show)