]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.h
Rename files in src/mathed and src/graphics from .C to .cpp, step 2
[lyx.git] / src / mathed / InsetMathDelim.h
index 03f883526878b7a3a1ee88897351ea6e4e4da0ce..ab94d85808153caa39ca900e0a239f2e0f67741a 100644 (file)
@@ -24,9 +24,9 @@ namespace lyx {
 class InsetMathDelim : public InsetMathNest {
 public:
        ///
-       InsetMathDelim(std::string const & left, std::string const & right);
+       InsetMathDelim(docstring const & left, docstring const & right);
        ///
-       InsetMathDelim(std::string const & left, std::string const & right, MathArray const &);
+       InsetMathDelim(docstring const & left, docstring const & right, MathArray const &);
        ///
        InsetMathDelim * asDelimInset() { return this; }
        ///
@@ -40,7 +40,7 @@ public:
        ///
        mode_type currentMode() const { return MATH_MODE; }
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
 
@@ -55,13 +55,13 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void octave(OctaveStream &) const;
        ///
-       std::string left_;
+       docstring left_;
        ///
-       std::string right_;
+       docstring right_;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        ///