]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_tabularinset.h
macro rework
[lyx.git] / src / mathed / math_tabularinset.h
index 741aa4a2b8d63ef8a9ccb4cd8f7f4c7c6810a650..88224601b2efb5a67e9513c8200e2f86deabe97b 100644 (file)
 class MathTabularInset : public MathGridInset {
 public:
        ///
-       MathTabularInset(string const &, int m, int n);
+       MathTabularInset(std::string const &, int m, int n);
        ///
-       MathTabularInset(string const &, int m, int n,
-               char valign, string const & halign);
+       MathTabularInset(std::string const &, int m, int n,
+               char valign, std::string const & halign);
        ///
-       MathTabularInset(string const &, char valign, string const & halign);
+       MathTabularInset(std::string const &, char valign, std::string const & halign);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
@@ -45,7 +45,7 @@ public:
 
 private:
        ///
-       string name_;
+       std::string name_;
 };
 
 #endif