]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathGridInfo.h
Fix regression of 5261ae6a2
[lyx.git] / src / mathed / MathGridInfo.h
index c9ad6b4a401d3381b0f061deb0a4c3f58cb62399..07ba78a9d95fc97fa75d7c14f575f699ca1e4f0e 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 #include <string>
 
 
+namespace lyx {
+
+
 class ColInfo
 {
 public:
        ColInfo() : align('c'), rightline(0), leftline(false) {}
        char   align;      // column alignment
-       std::string width;      // column width
-       std::string special;    // special column alignment
+       docstring width;      // column width
+       docstring special;    // special column alignment
        int    rightline;  // a line on the right?
        bool   leftline;
 };
@@ -44,7 +47,7 @@ public:
           topline(false), bottomline(false)
        {}
 
-       std::string content;    // cell content
+       docstring content;    // cell content
        int multi;         // multicolumn flag
        char align;        // cell alignment
        bool leftline;     // do we have a line on the left?
@@ -60,4 +63,7 @@ inline char const * verbose_align(char c)
 }
 
 
+
+} // namespace lyx
+
 #endif