From 0567fdfceb09e9e7a44e8ba01a04e2f9c58dee05 Mon Sep 17 00:00:00 2001 From: Kevin Hock Date: Wed, 9 Nov 2005 00:30:45 +0000 Subject: [PATCH] Restored the accidentally deleted "return true;" at the end of the Show method from last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/toplevel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/msw/toplevel.cpp b/src/msw/toplevel.cpp index 8b7cc3f70a..f1dfb54d5c 100644 --- a/src/msw/toplevel.cpp +++ b/src/msw/toplevel.cpp @@ -617,6 +617,8 @@ bool wxTopLevelWindowMSW::Show(bool show) if (frame && frame->GetMenuBar()) frame->GetMenuBar()->AddAdornments(GetWindowStyleFlag()); #endif + + return true; } // ----------------------------------------------------------------------------