another compilation fix after wxMenuBar ctor patch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32950 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-03-21 11:29:40 +00:00
parent 514ee25088
commit 3b880f293e

View File

@ -128,11 +128,14 @@ bool wxMenuBar::Create(long style)
return true;
}
wxMenuBar::wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long WXUNUSED(style))
wxMenuBar::wxMenuBar(size_t n,
wxMenu *menus[],
const wxString titles[],
long style)
{
Create(style);
for(size_t i = 0; i < n; ++i )
for ( size_t i = 0; i < n; ++i )
Append(menus[i], titles[i]);
}