]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/CommandInset.cpp
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[lyx.git] / src / mathed / CommandInset.cpp
index 3ad90d1eb88f49109ce00674f53eb24d82c7a023..84894adf2f9a8c4e5b5046fd416845076b9eb647 100644 (file)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -65,12 +65,11 @@ void CommandInset::draw(PainterInfo & pi, int x, int y) const
 
 void CommandInset::write(WriteStream & os) const
 {
-       bool brace = ensureMath(os, needs_math_mode_);
+       MathEnsurer ensurer(os, needs_math_mode_);
        os << '\\' << name_.c_str();
        if (cell(1).size())
                os << '[' << cell(1) << ']';
        os << '{' << cell(0) << '}';
-       os.pendingBrace(brace);
 }