remove const from pass-by-value parameters

This commit is contained in:
Paul Cornett 2016-01-16 11:03:50 -08:00
parent e5e3f6fffa
commit 6245e2d996

View File

@ -810,7 +810,7 @@ wxMenu::~wxMenu()
g_object_unref(m_accel);
}
void wxMenu::SetLayoutDirection(const wxLayoutDirection dir)
void wxMenu::SetLayoutDirection(wxLayoutDirection dir)
{
if ( m_owner )
wxWindow::GTKSetLayout(m_owner, dir);