mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Compilation fix.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7727 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
204f9ac42e
commit
a8610b9f0f
@ -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>
|
2003-09-09 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
* GPainter.C: change Assert to BOOST_ASSERT
|
* GPainter.C: change Assert to BOOST_ASSERT
|
||||||
|
@ -160,7 +160,7 @@ void GToolbar::onLayoutSelected()
|
|||||||
if (layoutGuiName.empty())
|
if (layoutGuiName.empty())
|
||||||
return;
|
return;
|
||||||
LyXTextClass const & tc =
|
LyXTextClass const & tc =
|
||||||
view_->buffer()->params.getLyXTextClass();
|
view_->buffer()->params().getLyXTextClass();
|
||||||
|
|
||||||
LyXTextClass::const_iterator end = tc.end();
|
LyXTextClass::const_iterator end = tc.end();
|
||||||
for (LyXTextClass::const_iterator cit = tc.begin();
|
for (LyXTextClass::const_iterator cit = tc.begin();
|
||||||
|
Loading…
Reference in New Issue
Block a user