From: Baruch Even Date: Thu, 19 Jul 2001 09:26:56 +0000 (+0000) Subject: Fix build bustage of Gnome FE. X-Git-Tag: 1.6.10~21054 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=50cf8a6908847ff31d9246309db5107b5f015f85;p=features.git 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 --- diff --git a/src/frontends/gnome/ChangeLog b/src/frontends/gnome/ChangeLog index 4b4a38425c..9ea6241383 100644 --- a/src/frontends/gnome/ChangeLog +++ b/src/frontends/gnome/ChangeLog @@ -1,3 +1,7 @@ +2001-07-19 Baruch Even + + * Menubar_pimpl.C: Renamed LyXFunc::Dispatch to LyXFunc::dispatch. + 2001-07-16 Baruch Even * GUIRunTime.C: Added some functions that were required lately. diff --git a/src/frontends/gnome/Menubar_pimpl.C b/src/frontends/gnome/Menubar_pimpl.C index c7aa79153a..768545883e 100644 --- a/src/frontends/gnome/Menubar_pimpl.C +++ b/src/frontends/gnome/Menubar_pimpl.C @@ -187,7 +187,7 @@ void Menubar::Pimpl::callback(int action) // Dispatch action OR record action to local variable (see connectWidgetToAction) if (!ignore_action_) { Pimpl::update(); - owner_->getLyXFunc()->Dispatch(action); + owner_->getLyXFunc()->dispatch(action); } else action_ = action; } @@ -203,7 +203,7 @@ void Menubar::Pimpl::callbackToc(Buffer::TocItem tg) owner_->view()->update(BufferView::SELECT|BufferView::FITCUR); #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 & Menus, string rootpath)