]> git.lyx.org Git - lyx.git/commitdiff
fix compile error (missing semicolon)
authorJohn Levon <levon@movementarian.org>
Mon, 24 May 2004 11:19:30 +0000 (11:19 +0000)
committerJohn Levon <levon@movementarian.org>
Mon, 24 May 2004 11:19:30 +0000 (11:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8773 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/XFormsToolbar.C

index 1d8612ce46d6abebeb8aaa7233069a5164a6dedb..9904209457951a816bc883f8b4e44d5ca18a3e08 100644 (file)
@@ -1,3 +1,7 @@
+2004-05-24  John Levon  <levon@movementarian.org>
+
+       * XFormsToolbar.C: fix compile error
+
 2004-05-19  Angus Leeming  <leeming@lyx.org>
 
        * Most files: wrap code up inside namespace lyx::frontend.
index aa965320e8da09e09ff613ff63a02a034fc37acd..9808b773a29eab6e9ed32c59bae9a24b8f7a2010 100644 (file)
@@ -190,7 +190,7 @@ void XFormsToolbar::toolbarItem::generateInactivePixmaps()
 Toolbars::ToolbarPtr make_toolbar(ToolbarBackend::Toolbar const & tbb,
                                  LyXView & owner)
 {
-       using lyx::frontend::XFormsToolbar
+       using lyx::frontend::XFormsToolbar;
        return Toolbars::ToolbarPtr(new XFormsToolbar(tbb, owner));
 }