From 50cf8a6908847ff31d9246309db5107b5f015f85 Mon Sep 17 00:00:00 2001 From: Baruch Even Date: Thu, 19 Jul 2001 09:26:56 +0000 Subject: [PATCH] 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 --- src/frontends/gnome/ChangeLog | 4 ++++ src/frontends/gnome/Menubar_pimpl.C | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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) -- 2.39.2