]> git.lyx.org Git - features.git/commitdiff
moveItem(): simplify a bit more and clarify comment.
authorAbdelrazak Younes <younes@lyx.org>
Wed, 8 Oct 2008 14:52:07 +0000 (14:52 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Wed, 8 Oct 2008 14:52:07 +0000 (14:52 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26813 a592a061-630c-0410-9148-cb99ea01b6c8

src/paragraph_funcs.cpp

index 0d53d3a9cfd666b88d2fb96842a25c321e7ea9e4..f77139156081f82af6eb40902e4e6612d74c9130 100644 (file)
@@ -37,12 +37,11 @@ static bool moveItem(Paragraph & fromPar, pos_type fromPos,
        // Therefore, it should only be used for breaking and merging paragraphs
 
        Font const tmpFont = fromPar.getFontSettings(params, fromPos);
-       Change const tmpChange = fromPar.lookupChange(fromPos);
+       Change const tmpChange = fromPar.lookupChange(fromPos);
 
-       Inset * tmpInset = fromPar.getInset(fromPos);
-       if (tmpInset) {
-               // the inset is not in the paragraph any more
-               tmpInset = fromPar.releaseInset(fromPos);
+       if (Inset * tmpInset = fromPar.getInset(fromPos)) {
+               fromPar.releaseInset(fromPos);
+               // The inset is not in fromPar any more.
                return toPar.insertInset(toPos, tmpInset, tmpFont, tmpChange);
        }