diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kpilot/lib/pilotDatabase.cc | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpilot/lib/pilotDatabase.cc')
-rw-r--r-- | kpilot/lib/pilotDatabase.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpilot/lib/pilotDatabase.cc b/kpilot/lib/pilotDatabase.cc index fd568b703..cc65895e7 100644 --- a/kpilot/lib/pilotDatabase.cc +++ b/kpilot/lib/pilotDatabase.cc @@ -34,7 +34,7 @@ #include <time.h> // Needed by pilot-link include #include <pi-appinfo.h> -#include <qstringlist.h> +#include <tqstringlist.h> #include <kglobal.h> @@ -42,9 +42,9 @@ #include "pilotRecord.h" static int creationCount = 0; -static QStringList *createdNames = 0L; +static TQStringList *createdNames = 0L; -PilotDatabase::PilotDatabase(const QString &s) : +PilotDatabase::PilotDatabase(const TQString &s) : fDBOpen(false), fName(s) { @@ -52,7 +52,7 @@ PilotDatabase::PilotDatabase(const QString &s) : creationCount++; if (!createdNames) { - createdNames = new QStringList(); + createdNames = new TQStringList(); } createdNames->append(s.isEmpty() ? CSL1("<empty>") : s); } |