From 8915e40ce9800c3494916375753bcdf44716f809 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 1 Dec 2010 07:42:13 +0000 Subject: [PATCH] fixing missing return value git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66304 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/core/private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/osx/core/private.h b/include/wx/osx/core/private.h index ba2d659c20..d56484f7c5 100644 --- a/include/wx/osx/core/private.h +++ b/include/wx/osx/core/private.h @@ -151,7 +151,7 @@ public : wxMenu *pSubMenu ); // handle OS specific menu items if they weren't handled during normal processing - virtual bool DoDefault() {} ; + virtual bool DoDefault() { return false; } protected : wxMenuItem* m_peer; -- 2.50.0