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:
parent
514ee25088
commit
3b880f293e
@ -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]);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user