git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32767 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2010-01-05 13:20:57 +00:00
parent 744ee152fa
commit 24f3ddef3f

View File

@ -317,8 +317,8 @@ Buffer::Buffer(string const & file, bool readonly, Buffer const * cloned_buffer)
if (cloned_buffer) {
d->inset = new InsetText(*cloned_buffer->d->inset);
d->inset->setBuffer(*this);
// FIXME 1: optimize this loop somewhat, maybe by creatinga new
// greneral recursive Inset::setId().
// FIXME: optimize this loop somewhat, maybe by creating a new
// general recursive Inset::setId().
DocIterator it = doc_iterator_begin(this);
DocIterator cloned_it = doc_iterator_begin(cloned_buffer);
for (; !it.atEnd(); it.forwardPar(), cloned_it.forwardPar())