]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDecoration.C
fix reading UTF8 encoded symbol file
[lyx.git] / src / mathed / InsetMathDecoration.C
index 474fda2f0c40bd57f69680ef74bf8a9f97afc585..0d67122d851ba38fe0016eed671eae6933ae1d2f 100644 (file)
@@ -15,7 +15,7 @@
 #include "MathData.h"
 #include "MathSupport.h"
 #include "MathParser.h"
-#include "MathMLStream.h"
+#include "MathStream.h"
 #include "MathStream.h"
 
 #include "LaTeXFeatures.h"
@@ -24,6 +24,9 @@
 #include "support/std_ostream.h"
 
 
+namespace lyx {
+
+
 InsetMathDecoration::InsetMathDecoration(latexkeys const * key)
        : InsetMathNest(1), key_(key)
 {
@@ -146,7 +149,7 @@ void InsetMathDecoration::normalize(NormalStream & os) const
 }
 
 
-void InsetMathDecoration::infoize(std::ostream & os) const
+void InsetMathDecoration::infoize(odocstream & os) const
 {
        os << "Deco: " << key_->name;
 }
@@ -158,3 +161,6 @@ void InsetMathDecoration::validate(LaTeXFeatures & features) const
                features.require("amsmath");
        InsetMathNest::validate(features);
 }
+
+
+} // namespace lyx