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.h | |
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.h')
-rw-r--r-- | kpilot/lib/pilotDatabase.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpilot/lib/pilotDatabase.h b/kpilot/lib/pilotDatabase.h index 84c922ed4..82a6431d7 100644 --- a/kpilot/lib/pilotDatabase.h +++ b/kpilot/lib/pilotDatabase.h @@ -50,11 +50,11 @@ class KDE_EXPORT PilotDatabase { public: - PilotDatabase(const QString &name = QString::null); + PilotDatabase(const TQString &name = TQString::null); virtual ~PilotDatabase(); - QString name() const { return fName; } ; + TQString name() const { return fName; } ; /** * Debugging information: tally how many databases are created @@ -90,7 +90,7 @@ public: */ virtual unsigned int recordCount() const=0; - /** Returns a QValueList of all record ids in the database. + /** Returns a TQValueList of all record ids in the database. This implementation is really bad. */ virtual Pilot::RecordIDList idList(); @@ -146,7 +146,7 @@ public: * the database. Serial databases get Pilot:, local * databases return the full path. */ - virtual QString dbPathName() const = 0; + virtual TQString dbPathName() const = 0; /** * Use this instead of RTTI to determine the type of a @@ -170,7 +170,7 @@ protected: private: bool fDBOpen; - QString fName; + TQString fName; }; /** A template class for reading and interpreting a database. This removes |