]> git.lyx.org Git - features.git/commitdiff
Compilation fix.
authorAngus Leeming <leeming@lyx.org>
Wed, 10 Sep 2003 10:09:41 +0000 (10:09 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 10 Sep 2003 10:09:41 +0000 (10:09 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7727 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/gtk/ChangeLog
src/frontends/gtk/GToolbar.C

index 92706a8397fc895d6bcccb64eb8bc7b95e0bfb73..e414752541d11cf2576f43756acb4b776bc42963 100644 (file)
@@ -1,3 +1,8 @@
+2003-09-10  Angus Leeming  <leeming@lyx.org>
+
+       * GToolbar.C (onLayoutSelected): missed a change from a call to the
+       Buffer::params member variable to the Buffer::params() function.
+
 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
 
        * GPainter.C: change Assert to BOOST_ASSERT
index 34d1981fc981f38ab313f90d25083217759f01c1..53b69464139a02d0cbc2b5e9a10dcb8a0b9bd8a3 100644 (file)
@@ -160,7 +160,7 @@ void GToolbar::onLayoutSelected()
        if (layoutGuiName.empty())
                return;
        LyXTextClass const & tc =
-               view_->buffer()->params.getLyXTextClass();
+               view_->buffer()->params().getLyXTextClass();
 
        LyXTextClass::const_iterator end = tc.end();
        for (LyXTextClass::const_iterator cit = tc.begin();