]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_numberinset.h
macro rework
[lyx.git] / src / mathed / math_numberinset.h
index aca947bb9c02395b49e10fc521a97e6aa528bd42..fc9ed67070804c1f6a2363d3d14cee0851c16abc 100644 (file)
@@ -21,7 +21,7 @@
 class MathNumberInset : public MathInset {
 public:
        ///
-       explicit MathNumberInset(string const & s);
+       explicit MathNumberInset(std::string const & s);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
@@ -29,7 +29,7 @@ public:
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
-       string str() const { return str_; }
+       std::string str() const { return str_; }
        ///
        MathNumberInset * asNumberInset() { return this; }
 
@@ -46,6 +46,6 @@ public:
 
 private:
        /// the number as string
-       string str_;
+       std::string str_;
 };
 #endif