Compilation fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7727 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-09-10 10:09:41 +00:00
parent 204f9ac42e
commit a8610b9f0f
2 changed files with 6 additions and 1 deletions

View 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

View 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();