]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathArray.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathArray.h
index 832ba7cdb09ebcd85f8fc69135c13fb44d38c820..b14f9b2e4e366d95423cec82917ef4d39ce7aa3f 100644 (file)
@@ -22,14 +22,14 @@ namespace lyx {
 class InsetMathArray : public InsetMathGrid {
 public:
        ///
-       InsetMathArray(std::string const &, int m, int n);
+       InsetMathArray(docstring const &, int m, int n);
        ///
-       InsetMathArray(std::string const &, int m, int n,
-               char valign, std::string const & halign);
+       InsetMathArray(docstring const &, int m, int n,
+               char valign, docstring const & halign);
        ///
-       InsetMathArray(std::string const &, char valign, std::string const & halign);
+       InsetMathArray(docstring const &, char valign, docstring const & halign);
        /// convenience constructor from whitespace/newline separated data
-       InsetMathArray(std::string const &, std::string const & str);
+       InsetMathArray(docstring const &, docstring const & str);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -42,7 +42,7 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
        ///
        void normalize(NormalStream & os) const;
        ///
@@ -52,7 +52,7 @@ public:
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       std::string name_;
+       docstring name_;
 };