]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/table.cpp
support for table cell rotations; fileformat change
[features.git] / src / tex2lyx / table.cpp
index fe6b8cf4975aae006dc97554f0961a7b90d3d4f1..7ba5344d1324c9d6ba697ae4444022a26fe7d290 100644 (file)
@@ -118,7 +118,7 @@ class CellInfo {
 public:
        CellInfo() : multi(CELL_NORMAL), align('n'), valign('n'),
                     leftlines(0), rightlines(0), topline(false),
-                    bottomline(false), rotate(false) {}
+                    bottomline(false), rotate(0) {}
        /// cell content
        string content;
        /// multicolumn flag
@@ -135,8 +135,8 @@ public:
        bool topline;
        /// do we have a line below?
        bool bottomline;
-       /// is the cell rotated?
-       bool rotate;
+       /// how is the cell rotated?
+       int rotate;
        /// width for multicolumn cells
        string width;
        /// special formatting for multicolumn cells