]> git.lyx.org Git - lyx.git/commitdiff
add forgotten return value
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Fri, 22 Apr 2005 09:16:28 +0000 (09:16 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Fri, 22 Apr 2005 09:16:28 +0000 (09:16 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9854 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/insetfloat.C

index 3c8cf348375ce8d262dd11ad5cc5cbf46c712733..4b9490688dfa20516757e3f85953d69378fdba7f 100644 (file)
@@ -193,11 +193,10 @@ bool InsetFloat::getStatus(LCursor & cur, FuncRequest const & cmd,
        case LFUN_INSET_MODIFY:
        case LFUN_INSET_DIALOG_UPDATE:
                flag.enabled(true);
-               break;
+               return true;
 
        default:
                return InsetCollapsable::getStatus(cur, cmd, flag);
-               break;
        }
 }