X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_stringinset.h;h=bbbd670348893bdab95da87e4e4d0b26c0f48ac5;hb=edbef46cd7865dab72ab6b503d62e2492479d297;hp=5f38f66a9fc64889ca15b1a27d0ade9a776337f6;hpb=1f9e9cf5173fa1fbafdff5f21080e5194b05818b;p=lyx.git diff --git a/src/mathed/math_stringinset.h b/src/mathed/math_stringinset.h index 5f38f66a9f..bbbd670348 100644 --- a/src/mathed/math_stringinset.h +++ b/src/mathed/math_stringinset.h @@ -22,7 +22,7 @@ class MathStringInset : public MathInset { public: /// - explicit MathStringInset(string const & s); + explicit MathStringInset(std::string const & s); /// virtual std::auto_ptr clone() const; /// @@ -30,7 +30,7 @@ public: /// void draw(PainterInfo & pi, int x, int y) const; /// - string str() const { return str_; } + std::string str() const { return str_; } /// MathStringInset * asStringInset() { return this; } @@ -49,6 +49,6 @@ public: private: /// the string - string str_; + std::string str_; }; #endif