* src/paragraph_pimpl.C: replace FIXME for

change tracking by a comment


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15845 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2006-11-10 21:49:37 +00:00
parent 3815df7705
commit e7251cf158

View File

@ -280,10 +280,10 @@ bool Paragraph::Pimpl::eraseChar(pos_type pos, bool trackChanges)
return false;
}
// Don't physically access nonexistent end-of-paragraph char
// Don't physically access the imaginary end-of-paragraph character.
// eraseChar() can only mark it as DELETED. A physical deletion of
// end-of-par must be handled externally.
if (pos == size()) {
// FIXME: change tracking (MG)
// how do we handle end-of-pars previously marked inserted?
return false;
}