return early.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30936 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2009-08-09 14:38:54 +00:00
parent fe1e5203c0
commit c49cbaa724

View File

@ -1931,10 +1931,12 @@ docstring Cursor::selectionAsString(bool with_label) const
if (!selection())
return docstring();
if (inMathed())
return cap::grabSelection(*this);
int const label = with_label
? AS_STR_LABEL | AS_STR_INSETS : AS_STR_INSETS;
if (inTexted()) {
idx_type const startidx = selBegin().idx();
idx_type const endidx = selEnd().idx();
if (startidx != endidx) {
@ -1972,12 +1974,6 @@ docstring Cursor::selectionAsString(bool with_label) const
return result;
}
if (inMathed())
return cap::grabSelection(*this);
return docstring();
}
docstring Cursor::currentState() const
{