remove typo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8336 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2004-01-13 11:41:35 +00:00
parent 4b8c9ebca8
commit 09c7f0bf77

View File

@ -109,7 +109,7 @@ void LCursor::push(UpdatableInset * inset)
void LCursor::pop(int depth) void LCursor::pop(int depth)
{ {
lyxerr << "LCursor::pop() to " << depth << endl; lyxerr << "LCursor::pop() to " << depth << endl;
while (data.size() > 1 && depth < data_.size()) { while (data_.size() > 1 && depth < data_.size()) {
lyxerr << "LCursor::pop a level " << endl; lyxerr << "LCursor::pop a level " << endl;
data_.pop_back(); data_.pop_back();
} }