Fix compiling errors caused by LyXText::ChangeOp::ACCEPT

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16865 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Bo Peng 2007-01-26 04:08:27 +00:00
parent 6aefa6e8ff
commit ef17f583f3

View File

@ -862,7 +862,7 @@ Update::flags BufferView::dispatch(FuncRequest const & cmd)
#warning FIXME changes
#endif
while (findNextChange(this))
getLyXText()->acceptOrRejectChanges(cursor_, LyXText::ChangeOp::ACCEPT);
getLyXText()->acceptOrRejectChanges(cursor_, LyXText::ACCEPT);
break;
}
@ -872,7 +872,7 @@ Update::flags BufferView::dispatch(FuncRequest const & cmd)
#warning FIXME changes
#endif
while (findNextChange(this))
getLyXText()->acceptOrRejectChanges(cursor_, LyXText::ChangeOp::REJECT);
getLyXText()->acceptOrRejectChanges(cursor_, LyXText::REJECT);
break;
}