diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kded/kbuildservicetypefactory.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kded/kbuildservicetypefactory.h')
-rw-r--r-- | kded/kbuildservicetypefactory.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kded/kbuildservicetypefactory.h b/kded/kbuildservicetypefactory.h index ea99785ad..a68b8851b 100644 --- a/kded/kbuildservicetypefactory.h +++ b/kded/kbuildservicetypefactory.h @@ -21,7 +21,7 @@ #define __k_build_service_type_factory_h__ #include <kservicetypefactory.h> -#include <qstringlist.h> +#include <tqstringlist.h> /** * Service-type factory for building ksycoca @@ -41,12 +41,12 @@ public: * Find a service type in the database file * @return a pointer to the servicetype in the memory dict (don't free!) */ - virtual KServiceType * findServiceTypeByName(const QString &_name); + virtual KServiceType * findServiceTypeByName(const TQString &_name); /** * Construct a KServiceType from a config file. */ - virtual KSycocaEntry * createEntry(const QString &file, const char *resource); + virtual KSycocaEntry * createEntry(const TQString &file, const char *resource); virtual KServiceType * createEntry( int ) { assert(0); return 0L; } @@ -58,7 +58,7 @@ public: /** * Write out service type specific index files. */ - virtual void save(QDataStream &str); + virtual void save(TQDataStream &str); /** * Write out header information @@ -66,15 +66,15 @@ public: * Don't forget to call the parent first when you override * this function. */ - virtual void saveHeader(QDataStream &str); + virtual void saveHeader(TQDataStream &str); /** * Returns all resource types for this service factory */ - static QStringList resourceTypes(); + static TQStringList resourceTypes(); private: - void savePatternLists(QDataStream &str); + void savePatternLists(TQDataStream &str); }; #endif |