summaryrefslogtreecommitdiffstats
path: root/kded/kbuildservicegroupfactory.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kded/kbuildservicegroupfactory.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-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/kbuildservicegroupfactory.h')
-rw-r--r--kded/kbuildservicegroupfactory.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kded/kbuildservicegroupfactory.h b/kded/kbuildservicegroupfactory.h
index 08d825be5..b4d303502 100644
--- a/kded/kbuildservicegroupfactory.h
+++ b/kded/kbuildservicegroupfactory.h
@@ -20,8 +20,8 @@
#define __k_build_service_group_factory_h__
#include <kservicegroupfactory.h>
-#include <qdict.h>
-#include <qstringlist.h>
+#include <tqdict.h>
+#include <tqstringlist.h>
/**
* Service group factory for building ksycoca
@@ -40,14 +40,14 @@ public:
/**
* Create new entry.
*/
- virtual KServiceGroup * createEntry(const QString &, const char *);
+ virtual KServiceGroup * createEntry(const TQString &, const char *);
virtual KServiceGroup * createEntry(int) { assert(0); return 0L; }
/**
* Adds the entry @p newEntry to the menu @p menuName
*/
- void addNewEntryTo( const QString &menuName, KService *newEntry);
+ void addNewEntryTo( const TQString &menuName, KService *newEntry);
/**
* Adds the entry @p newEntry to the "parent group" @p parent, creating
@@ -55,14 +55,14 @@ public:
* A "parent group" is a group of services that all have the same
* "X-KDE-ParentApp".
*/
- KServiceGroup *addNewChild( const QString &parent, const char *resource, KSycocaEntry *newEntry);
+ KServiceGroup *addNewChild( const TQString &parent, const char *resource, KSycocaEntry *newEntry);
/**
* Add new menu @p menuName defined by @p file
* When @p entry is non-null it is re-used, otherwise a new group is created.
* A pointer to the group is returned.
*/
- KServiceGroup *addNew( const QString &menuName, const QString& file, KServiceGroup *entry, bool isDeleted);
+ KServiceGroup *addNew( const TQString &menuName, const TQString& file, KServiceGroup *entry, bool isDeleted);
/**
* Add a new menu entry
@@ -72,17 +72,17 @@ public:
/**
* Write out servicegroup specific index files.
*/
- virtual void save(QDataStream &str);
+ virtual void save(TQDataStream &str);
/**
* Write out header information
*/
- virtual void saveHeader(QDataStream &str);
+ virtual void saveHeader(TQDataStream &str);
/**
* Returns all resource types for this service factory
*/
- static QStringList resourceTypes();
+ static TQStringList resourceTypes();
};
#endif