X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_arrayinset.h;h=dbd9fe3bc035b5aa70429a703d351c8c8375ef49;hb=b447408de232872fef1537fca542abc23702d572;hp=818ac49b4d57d14b2fbb97ee992d8550013301d6;hpb=1f9e9cf5173fa1fbafdff5f21080e5194b05818b;p=lyx.git diff --git a/src/mathed/math_arrayinset.h b/src/mathed/math_arrayinset.h index 818ac49b4d..dbd9fe3bc0 100644 --- a/src/mathed/math_arrayinset.h +++ b/src/mathed/math_arrayinset.h @@ -19,16 +19,16 @@ class MathArrayInset : public MathGridInset { public: /// - MathArrayInset(string const &, int m, int n); + MathArrayInset(std::string const &, int m, int n); /// - MathArrayInset(string const &, int m, int n, - char valign, string const & halign); + MathArrayInset(std::string const &, int m, int n, + char valign, std::string const & halign); /// - MathArrayInset(string const &, char valign, string const & halign); + MathArrayInset(std::string const &, char valign, std::string const & halign); /// convienience constructor from whitespace/newline seperated data - MathArrayInset(string const &, string const & str); + MathArrayInset(std::string const &, std::string const & str); /// - virtual std::auto_ptr clone() const; + std::auto_ptr clone() const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// @@ -49,7 +49,7 @@ public: private: /// - string name_; + std::string name_; }; #endif