]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.h
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_splitinset.h
index 8704d37429a3343d976d770c981f7c5fc46ead8f..4225bae7c0d96addc25a608bbdd9df1ac5fc24a7 100644 (file)
@@ -3,6 +3,7 @@
 #define MATH_SPLITINSET_H
 
 #include "math_gridinset.h"
+#include "LString.h"
 
 #ifdef __GNUG__
 #pragma interface
 
 
 class MathSplitInset : public MathGridInset {
-public: 
+public:
        ///
-       explicit MathSplitInset(int n);
+       explicit MathSplitInset(string const & name);
        ///
        MathInset * clone() const;
        ///
        void write(WriteStream & os) const;
        ///
-       int defaultColSpace(int) { return 0; }
+       int defaultColSpace(col_type) { return 0; }
        ///
-       char defaultColAlign(int) { return 'l'; }
+       char defaultColAlign(col_type);
+private:
+       ///
+       string name_;
 };
 
 #endif