Move code.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26332 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-09-08 00:27:07 +00:00
parent 375a2e6e1c
commit cc5d0478c6

View File

@ -1969,11 +1969,6 @@ bool GuiView::dispatch(FuncRequest const & cmd)
setFocus();
break;
case LFUN_COMPLETION_INLINE:
if (d.current_work_area_)
d.current_work_area_->completer().showInline();
break;
case LFUN_SPLIT_VIEW:
if (Buffer * buf = buffer()) {
string const orientation = cmd.getArg(0);
@ -2003,6 +1998,11 @@ bool GuiView::dispatch(FuncRequest const & cmd)
}
break;
case LFUN_COMPLETION_INLINE:
if (d.current_work_area_)
d.current_work_area_->completer().showInline();
break;
case LFUN_COMPLETION_POPUP:
if (d.current_work_area_)
d.current_work_area_->completer().showPopup();