]> git.lyx.org Git - features.git/commitdiff
Fix build bustage of Gnome FE.
authorBaruch Even <baruch@lyx.org>
Thu, 19 Jul 2001 09:26:56 +0000 (09:26 +0000)
committerBaruch Even <baruch@lyx.org>
Thu, 19 Jul 2001 09:26:56 +0000 (09:26 +0000)
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
src/frontends/gnome/Menubar_pimpl.C

index 4b4a38425c8e4b91fa0d869e663e5f11a34acfca..9ea6241383bbb293bcf79668dc288cb9a6dbf0eb 100644 (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>
 
        * GUIRunTime.C: Added some functions that were required lately.
index c7aa79153a14fc7981dc20fccd9c9efed0e144eb..768545883e97f43cc6d10ceb5edbf0ffbcb94302 100644 (file)
@@ -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<Gnome::UI::Info> & Menus, string rootpath)