]> git.lyx.org Git - features.git/commitdiff
Be more careful with braces, due to comments.
authorRichard Heck <rgheck@lyx.org>
Sat, 30 Jul 2016 03:59:24 +0000 (23:59 -0400)
committerRichard Heck <rgheck@lyx.org>
Sat, 30 Jul 2016 03:59:24 +0000 (23:59 -0400)
src/insets/InsetFloat.cpp

index 8d35c646cc5d582360e8d9ac47cbd60b3380cd00..e1538e2635f76d9365645ac5541ca25a866cc1a4 100644 (file)
@@ -306,16 +306,17 @@ docstring InsetFloat::xhtml(XHTMLStream & xs, OutputParams const & rp) const
        docstring deferred = InsetText::insetAsXHTML(newxs, rp, opts);
        newxs << html::EndTag(htmltype);
 
-       if (rp.inFloat == OutputParams::NONFLOAT)
+       if (rp.inFloat == OutputParams::NONFLOAT) {
                // In this case, this float needs to be deferred, but we'll put it
                // before anything the text itself deferred.
                deferred = ods.str() + '\n' + deferred;
-       else 
+       } else {
                // In this case, the whole thing is already being deferred, so
                // we can write to the stream.
                // Note that things will already have been escaped, so we do not 
                // want to escape them again.
                xs << XHTMLStream::ESCAPE_NONE << ods.str();
+       }
        return deferred;
 }