]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.h
macro rework
[lyx.git] / src / mathed / math_boxinset.h
index 6ab4d1c7a2bdedde21b5f342940c8162fa9ac4f3..c155a76301cd3d4a0294dd8af8d69777cb133c44 100644 (file)
@@ -13,7 +13,8 @@
 #define MATH_BOXINSET_H
 
 #include "math_nestinset.h"
-#include "support/std_string.h"
+
+#include <string>
 
 
 class LyXFont;
@@ -23,7 +24,7 @@ class LyXFont;
 class MathBoxInset : public MathNestInset {
 public:
        ///
-       explicit MathBoxInset(string const & name);
+       explicit MathBoxInset(std::string const & name);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
@@ -41,7 +42,7 @@ public:
 
 private:
        ///
-       string name_;
+       std::string name_;
 };