]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathMatrix.h
Do not allow pasting backslashes in macro names
[features.git] / src / mathed / InsetMathMatrix.h
index d64ba3006ce77592811074b0597c1131dacde548..6aa44c1d5ca30060ae3a7c402e8beb57928a8d94 100644 (file)
@@ -24,34 +24,34 @@ namespace lyx {
 class InsetMathMatrix : public InsetMathGrid {
 public:
        ///
-       explicit InsetMathMatrix(InsetMathGrid const &, 
+       explicit InsetMathMatrix(InsetMathGrid const &,
                        docstring const & left, docstring const & right);
        /// identifies MatrixInsets
-       InsetMathMatrix const * asMatrixInset() const { return this; }
+       InsetMathMatrix const * asMatrixInset() const override { return this; }
 
        ///
-       void write(WriteStream & os) const;
+       void write(TeXMathStream & os) const override;
        ///
-       void normalize(NormalStream &) const;
+       void normalize(NormalStream &) const override;
        ///
-       void maple(MapleStream &) const;
+       void maple(MapleStream &) const override;
        ///
-       void maxima(MaximaStream &) const;
+       void maxima(MaximaStream &) const override;
        ///
-       void mathematica(MathematicaStream &) const;
+       void mathematica(MathematicaStream &) const override;
        ///
-       void mathmlize(MathStream &) const;
+       void mathmlize(MathMLStream &) const override;
        ///
-       void htmlize(HtmlStream &) const;
+       void htmlize(HtmlStream &) const override;
        ///
-       void octave(OctaveStream &) const;
+       void octave(OctaveStream &) const override;
        ///
-       InsetCode lyxCode() const { return MATH_MATRIX_CODE; }
+       InsetCode lyxCode() const override { return MATH_MATRIX_CODE; }
        ///
-       bool handlesMulticolumn() const { return true; } //override
+       bool handlesMulticolumn() const override { return true; }
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
        ///
        docstring left_;
        ///