projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bc096a
)
wxOSX: store the menu title when inserting it in the menu bar.
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 26 Apr 2013 20:00:52 +0000
(20:00 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Fri, 26 Apr 2013 20:00:52 +0000
(20:00 +0000)
We "lost" the menu title if the menu was inserted, and not appended, to the
menu bar, resulting wxMenuBar::GetMenuLabel[Text]() returning empty strings
for it in this case.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73870
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/osx/menu_osx.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/osx/menu_osx.cpp
b/src/osx/menu_osx.cpp
index 093da094e426df1db7118390e5534ef233b00a7a..cf7dcaa670dc11922f4f5c885f799434f4960935 100644
(file)
--- a/
src/osx/menu_osx.cpp
+++ b/
src/osx/menu_osx.cpp
@@
-888,6
+888,7
@@
bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title)
return false;
m_rootMenu->Insert( pos+firstMenuPos, wxMenuItem::New( m_rootMenu, wxID_ANY, title, "", wxITEM_NORMAL, menu ) );
+ menu->SetTitle(title);
return true;
}