From: Kevin Ollivier Date: Fri, 30 Oct 2009 06:01:16 +0000 (+0000) Subject: Compilation fix for last commit. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/335b5afa775c6d96f18ff6649386d3d90f322a8a Compilation fix for last commit. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62509 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/toplevel.cpp b/src/msw/toplevel.cpp index e74256523c..5fb5fd504f 100644 --- a/src/msw/toplevel.cpp +++ b/src/msw/toplevel.cpp @@ -612,7 +612,7 @@ void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd) void wxTopLevelWindowMSW::ShowWithoutActivating() { if ( !wxWindowBase::Show(true) ) - return false; + return; DoShowWindow(SW_SHOWNA); }