]> git.saurik.com Git - wxWidgets.git/commitdiff
forward Show() to base, not wxWindow
authorPaul Cornett <paulcor@bullseye.com>
Thu, 28 Feb 2008 06:34:01 +0000 (06:34 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Thu, 28 Feb 2008 06:34:01 +0000 (06:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/dialog.cpp

index ebc45066651b51c4f00cb2c2ede4df8b9201b4e2..c70813d55755b7da1ccdee9223032d091a3111a8 100644 (file)
@@ -69,7 +69,7 @@ bool wxDialog::Show( bool show )
     if (show && CanDoLayoutAdaptation())
         DoLayoutAdaptation();
 
-    bool ret = wxWindow::Show( show );
+    bool ret = wxDialogBase::Show(show);
 
     if (show)
         InitDialog();