From: Vadim Zeitlin Date: Sun, 20 Mar 2005 11:01:08 +0000 (+0000) Subject: compilation fix after last commit (missing semicolon added) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a6f96659c38bd7c270977208fd73994b7fb03bab compilation fix after last commit (missing semicolon added) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/cocoa/menu.h b/include/wx/cocoa/menu.h index 965008536e..21ceed2f32 100644 --- a/include/wx/cocoa/menu.h +++ b/include/wx/cocoa/menu.h @@ -78,7 +78,7 @@ class WXDLLEXPORT wxMenuBar : public wxMenuBarBase, public wxCocoaNSMenu public: // ctors and dtor wxMenuBar(long style = 0) { Create(style); } - wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0) + wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0); bool Create(long style = 0); virtual ~wxMenuBar();