]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dialog.cpp
More asserts and stuff
[wxWidgets.git] / 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
 {
-  return wxModalDialogs.Find(this);
+  return m_isShown;
 }
 
 bool wxDialog::IsModal() const
 {
-    return wxModalDialogs.
+    return wxModalDialogs.Find((wxDialog *)this) != 0; // const_cast
 }
 
 bool wxDialog::Show(bool show)