Fix build bustage of Gnome FE.

This resulted from the LyXFunc::Dispatch to LyXFunc::dispatch change.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2279 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Baruch Even 2001-07-19 09:26:56 +00:00
parent b15e539c68
commit 50cf8a6908
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-07-19 Baruch Even <baruch@lyx.org>
* Menubar_pimpl.C: Renamed LyXFunc::Dispatch to LyXFunc::dispatch.
2001-07-16 Baruch Even <baruch@lyx.org> 2001-07-16 Baruch Even <baruch@lyx.org>
* GUIRunTime.C: Added some functions that were required lately. * GUIRunTime.C: Added some functions that were required lately.

View File

@ -187,7 +187,7 @@ void Menubar::Pimpl::callback(int action)
// Dispatch action OR record action to local variable (see connectWidgetToAction) // Dispatch action OR record action to local variable (see connectWidgetToAction)
if (!ignore_action_) { if (!ignore_action_) {
Pimpl::update(); Pimpl::update();
owner_->getLyXFunc()->Dispatch(action); owner_->getLyXFunc()->dispatch(action);
} else } else
action_ = action; action_ = action;
} }
@ -203,7 +203,7 @@ void Menubar::Pimpl::callbackToc(Buffer::TocItem tg)
owner_->view()->update(BufferView::SELECT|BufferView::FITCUR); owner_->view()->update(BufferView::SELECT|BufferView::FITCUR);
#endif #endif
owner_->getLyXFunc()->Dispatch(LFUN_GOTO_PARAGRAPH, tg.str); owner_->getLyXFunc()->dispatch(LFUN_GOTO_PARAGRAPH, tg.str);
} }
void Menubar::Pimpl::composeUIInfo(string const & menu_name, vector<Gnome::UI::Info> & Menus, string rootpath) void Menubar::Pimpl::composeUIInfo(string const & menu_name, vector<Gnome::UI::Info> & Menus, string rootpath)