X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetTabular.h;h=78727b0f5cb12d32793dd0ce6d870a72d8edbb3c;hb=d8a6b5bfd0baa02a4ba03f8c9e9c618baf41b03f;hp=d40b9c6ba119b30a3c74703925138157437e93b4;hpb=db8c16d554ebb1dcb319e44d318572de6eff024b;p=lyx.git diff --git a/src/insets/InsetTabular.h b/src/insets/InsetTabular.h index d40b9c6ba1..78727b0f5c 100644 --- a/src/insets/InsetTabular.h +++ b/src/insets/InsetTabular.h @@ -459,16 +459,16 @@ public: /// //private: /// - class cellstruct { + class CellData { public: /// - cellstruct(Buffer const &); + CellData(Buffer const &); /// - cellstruct(cellstruct const &); + CellData(CellData const &); /// - cellstruct & operator=(cellstruct); + CellData & operator=(CellData); /// - void swap(cellstruct & rhs); + void swap(CellData & rhs); /// idx_type cellno; /// @@ -498,17 +498,17 @@ public: /// boost::shared_ptr inset; }; - cellstruct & cellinfo_of_cell(idx_type cell) const; + CellData & cellinfo_of_cell(idx_type cell) const; /// - typedef std::vector cell_vector; + typedef std::vector cell_vector; /// typedef std::vector cell_vvector; /// - class rowstruct { + class RowData { public: /// - rowstruct(); + RowData(); /// int ascent; /// @@ -542,13 +542,13 @@ public: bool newpage; }; /// - typedef std::vector row_vector; + typedef std::vector row_vector; /// - class columnstruct { + class ColumnData { public: /// - columnstruct(); + ColumnData(); /// LyXAlignment alignment; /// @@ -565,7 +565,7 @@ public: docstring align_special; }; /// - typedef std::vector column_vector; + typedef std::vector column_vector; /// idx_type numberofcells;