mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
fix gmenubar crash on "Figures" submenu
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9039 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
041474d127
commit
dec1f2fd28
@ -1,3 +1,9 @@
|
||||
2004-10-04 John Spray <spray_john@users.sourceforge.net>
|
||||
|
||||
* GMenubar.C: use item->submenu() instead of
|
||||
getMenu(item->submenuname) where item->submenuname is empty.
|
||||
Fixes crash with "Figures" submenu.
|
||||
|
||||
2004-10-03 John Spray <spray_john@users.sourceforge.net>
|
||||
|
||||
* GMenubar.C: add labels in MenuItems to display bindings
|
||||
|
@ -124,9 +124,9 @@ void GMenubar::openByName(string const & name)
|
||||
|
||||
bool GMenubar::submenuDisabled(MenuItem const * item)
|
||||
{
|
||||
Menu & from = menubackend.getMenu(item->submenuname());
|
||||
Menu * from = item->submenu();
|
||||
Menu to;
|
||||
menubackend.expand(from, to, view_);
|
||||
menubackend.expand(*from, to, view_);
|
||||
Menu::const_iterator i = to.begin();
|
||||
Menu::const_iterator end = to.end();
|
||||
for (; i != end; ++i) {
|
||||
@ -158,7 +158,10 @@ void GMenubar::onSubMenuActivate(MenuItem const * item,
|
||||
ClearMenu(gmenu);
|
||||
LyxMenu * lyxmenu = static_cast<LyxMenu*>(gmenu);
|
||||
lyxmenu->clearBackMenu();
|
||||
Menu * fmenu = &menubackend.getMenu(item->submenuname());
|
||||
Menu * fmenu = item->submenuname().empty() ?
|
||||
item->submenu() :
|
||||
&menubackend.getMenu(item->submenuname());
|
||||
|
||||
menubackend.expand(*fmenu, lyxmenu->getBackMenu(), view_);
|
||||
Menu::const_iterator i = lyxmenu->getBackMenu().begin();
|
||||
Menu::const_iterator end = lyxmenu->getBackMenu().end();
|
||||
@ -195,9 +198,9 @@ void GMenubar::onSubMenuActivate(MenuItem const * item,
|
||||
gmenu->items().back());
|
||||
citem.set_active(on);
|
||||
} else {
|
||||
//This is necessary because add_accel_label is protected,
|
||||
//and even if you subclass Gtk::MenuItem then add_accel_label
|
||||
//doesn't do what you'd expect.
|
||||
// This is necessary because add_accel_label is protected,
|
||||
// and even if you subclass Gtk::MenuItem then add_accel_label
|
||||
// doesn't do what you'd expect.
|
||||
Gtk::MenuItem * item = Gtk::manage(new Gtk::MenuItem);
|
||||
Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox);
|
||||
Gtk::Label * label1 = Gtk::manage(new Gtk::Label(
|
||||
|
Loading…
Reference in New Issue
Block a user