]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathMacroTemplate.cpp
Fix broken Apple speller interface
[features.git] / src / mathed / InsetMathMacroTemplate.cpp
index 7f4358651394707b1447a8cebe4afd471ef9e633..949f161bf90c54b34d06b221dcbb18f2d25c9357 100644 (file)
@@ -216,13 +216,13 @@ Inset * InsetDisplayLabelBox::clone() const
 }
 
 
-InsetMath::marker_type InsetDisplayLabelBox::marker(BufferView const * bv) const
+marker_type InsetDisplayLabelBox::marker(BufferView const * bv) const
 {
        if (parent_.editing(bv)
            || !parent_.cell(parent_.displayIdx()).empty())
-               return MARKER;
+               return marker_type::MARKER;
        else
-               return NO_MARKER;
+               return marker_type::NO_MARKER;
 }
 
 
@@ -678,7 +678,7 @@ int InsetMathMacroTemplate::maxArgumentInDefinition() const
                if (it.nextInset()->lyxCode() != MATH_MACROARG_CODE)
                        continue;
                InsetMathMacroArgument * arg = static_cast<InsetMathMacroArgument*>(it.nextInset());
-               maxArg = std::max(int(arg->number()), maxArg);
+               maxArg = std::max(arg->number(), maxArg);
        }
        return maxArg;
 }
@@ -1170,20 +1170,20 @@ void InsetMathMacroTemplate::write(ostream & os) const
 {
        odocstringstream oss;
        otexrowstream ots(oss);
-       WriteStream wi(ots, false, false, WriteStream::wsDefault);
+       TeXMathStream wi(ots, false, false, TeXMathStream::wsDefault);
        oss << "FormulaMacro\n";
        write(wi);
        os << to_utf8(oss.str());
 }
 
 
-void InsetMathMacroTemplate::write(WriteStream & os) const
+void InsetMathMacroTemplate::write(TeXMathStream & os) const
 {
        write(os, false);
 }
 
 
-int InsetMathMacroTemplate::write(WriteStream & os, bool overwriteRedefinition) const
+int InsetMathMacroTemplate::write(TeXMathStream & os, bool overwriteRedefinition) const
 {
        int num_lines = 0;