]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.h
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_splitinset.h
index 94ab3287c8c41db2a1b0006e42d5c07fe01379a2..49faf48f4e4974844857e6eb38fa956db99ea44d 100644 (file)
 #define MATH_SPLITINSET_H
 
 #include "math_gridinset.h"
-#include "support/std_string.h"
 
 
 class MathSplitInset : public MathGridInset {
 public:
        ///
-       explicit MathSplitInset(string const & name);
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       explicit MathSplitInset(std::string const & name);
        ///
        void write(WriteStream & os) const;
        ///
@@ -29,8 +26,9 @@ public:
        ///
        char defaultColAlign(col_type);
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif