Fixed popup menu's title to be bold regardless of method used.

Popup menus with title set via SetTitle() had bold font, but menus
created by passing title as ctor argument used normal font. Fixed this
by using the same code (SetTitle) in both cases, instead of having two
independent (and out of sync) implementations of the same functionality.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64255 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2010-05-09 10:27:35 +00:00
parent 3a72e0ed15
commit 163e127d2e

View File

@@ -281,8 +281,9 @@ void wxMenu::Init()
// if we have a title, insert it in the beginning of the menu
if ( !m_title.empty() )
{
Append(idMenuTitle, m_title);
AppendSeparator();
const wxString title = m_title;
m_title.clear(); // so that SetTitle() knows there was no title before
SetTitle(title);
}
}