From: David Elliott Date: Fri, 22 Oct 2004 15:50:24 +0000 (+0000) Subject: Forgot the appropriate return statement for the last patch. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9d1e4703d315e6ee0a4257777b1ac175fd14325e Forgot the appropriate return statement for the last patch. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30066 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/taskbar.mm b/src/cocoa/taskbar.mm index 1a5cd8e500..d6743993e2 100644 --- a/src/cocoa/taskbar.mm +++ b/src/cocoa/taskbar.mm @@ -63,7 +63,7 @@ public: protected: inline wxMenu* CreatePopupMenu() { wxASSERT(m_taskBarIcon); - m_taskBarIcon->CreatePopupMenu(); + return m_taskBarIcon->CreatePopupMenu(); } wxTaskBarIcon *m_taskBarIcon; wxTaskBarIconWindow *m_iconWindow;