diff options
Diffstat (limited to 'kspread/manipulator_data.h')
-rw-r--r-- | kspread/manipulator_data.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/manipulator_data.h b/kspread/manipulator_data.h index eea16842..1c926484 100644 --- a/kspread/manipulator_data.h +++ b/kspread/manipulator_data.h @@ -35,7 +35,7 @@ namespace KSpread { struct ADMStorage { Value val; - QString text; + TQString text; FormatType format; }; @@ -54,7 +54,7 @@ class AbstractDataManipulator : public Manipulator { bool *parse, FormatType *fmtType) = 0; /** preProcessing will store the old cell's data */ virtual bool preProcessing (); - QMap<int, QMap<int, ADMStorage> > oldData; + TQMap<int, TQMap<int, ADMStorage> > oldData; }; @@ -87,11 +87,11 @@ class ArrayFormulaManipulator : public AbstractDataManipulator { public: ArrayFormulaManipulator (); virtual ~ArrayFormulaManipulator (); - void setText (const QString text) { m_text = text; }; + void setText (const TQString text) { m_text = text; }; protected: virtual Value newValue (Element *element, int col, int row, bool *, FormatType *); - QString cellRef, m_text; + TQString cellRef, m_text; }; |