diff options
Diffstat (limited to 'kspread/manipulator.h')
-rw-r--r-- | kspread/manipulator.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kspread/manipulator.h b/kspread/manipulator.h index 9af94032..622362bc 100644 --- a/kspread/manipulator.h +++ b/kspread/manipulator.h @@ -42,18 +42,18 @@ class RowFormat; class Sheet; -// struct tqlayoutCell { +// struct layoutCell { // int row; // int col; // Format *l; // }; // -// struct tqlayoutColumn { +// struct layoutColumn { // int col; // ColumnFormat *l; // }; // -// struct tqlayoutRow { +// struct layoutRow { // int row; // RowFormat *l; // }; @@ -176,9 +176,9 @@ protected: virtual bool preProcessing(); virtual bool process(Element*); - void copyFormat(TQValueList<tqlayoutCell> &list, - TQValueList<tqlayoutColumn> &listCol, - TQValueList<tqlayoutRow> &listRow); + void copyFormat(TQValueList<layoutCell> &list, + TQValueList<layoutColumn> &listCol, + TQValueList<layoutRow> &listRow); bool testCondition(RowFormat*); void doWork(Format*, bool isTop, bool isBottom, bool isLeft, bool isRight); void prepareCell(Cell*); @@ -187,12 +187,12 @@ private: TQ_UINT32 m_properties; // TODO Stefan: find a more elegant way to store the format - TQValueList<tqlayoutCell> m_lstFormats; - TQValueList<tqlayoutCell> m_lstRedoFormats; - TQValueList<tqlayoutColumn> m_lstColFormats; - TQValueList<tqlayoutColumn> m_lstRedoColFormats; - TQValueList<tqlayoutRow> m_lstRowFormats; - TQValueList<tqlayoutRow> m_lstRedoRowFormats; + TQValueList<layoutCell> m_lstFormats; + TQValueList<layoutCell> m_lstRedoFormats; + TQValueList<layoutColumn> m_lstColFormats; + TQValueList<layoutColumn> m_lstRedoColFormats; + TQValueList<layoutRow> m_lstRowFormats; + TQValueList<layoutRow> m_lstRedoRowFormats; // SetSelectionFontWorker // SetSelectionSizeWorker |