]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.h
Changed tabular-file-format + fixes in tabular.
[lyx.git] / src / tabular.h
index 9e930036739cc95af88e9252b1b1b567e96fd0c5..6b5a9449e58f0be96cf27c6dd82c5b3b324b73b2 100644 (file)
@@ -161,8 +161,6 @@ public:
     explicit
     LyXTabular(Buffer const *, InsetTabular *, LyXLex & lex);
     ///
-    ~LyXTabular();
-    ///
     LyXTabular & operator=(LyXTabular const &);
     ///
     LyXTabular * Clone(InsetTabular *);
@@ -367,6 +365,7 @@ public:
     bool GetLTNewPage(int cell) const;
     ///
     InsetText * GetCellInset(int cell) const;
+    InsetText * GetCellInset(int row, int column) const;
     ///
     int rows() const { return rows_; }
     ///
@@ -462,9 +461,9 @@ private: //////////////////////////////////////////////////////////////////
     ///
     int numberofcells;
     ///
-    int * rowofcell;
+    std::vector<int> rowofcell;
     ///
-    int * columnofcell;
+    std::vector<int> columnofcell;
     ///
     row_vector row_info;
     ///