From: Stefan Csomor Date: Wed, 1 Dec 2010 07:42:13 +0000 (+0000) Subject: fixing missing return value X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8915e40ce9800c3494916375753bcdf44716f809?ds=inline fixing missing return value git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66304 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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;