From f008adb5a77e094eaf6abf3fc0f36958e66896a5 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 25 Jun 2011 05:28:35 +0000 Subject: TQt4 port koffice This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kspread/manipulator_data.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kspread/manipulator_data.h') 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 > oldData; + TQMap > 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; }; -- cgit v1.2.1