summaryrefslogtreecommitdiffstats
path: root/kdecore/klibloader.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/klibloader.h')
-rw-r--r--kdecore/klibloader.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdecore/klibloader.h b/kdecore/klibloader.h
index d5f811faf..b1a1bc330 100644
--- a/kdecore/klibloader.h
+++ b/kdecore/klibloader.h
@@ -47,7 +47,7 @@ class KLibraryPrivate;
* @see KLibLoader
* @author Torben Weis <weis@kde.org>
*/
-class KDECORE_EXPORT KLibrary : public TQObject
+class KDECORE_EXPORT KLibrary : public QObject
{
friend class KLibLoader;
friend class TQAsciiDict<KLibrary>;
@@ -139,7 +139,7 @@ class KLibWrapPrivate;
* @see KLibrary
* @author Torben Weis <weis@kde.org>
*/
-class KDECORE_EXPORT KLibLoader : public TQObject
+class KDECORE_EXPORT KLibLoader : public QObject
{
friend class KLibrary;
@@ -312,7 +312,7 @@ private:
* s_global = new KInstance( "kspread" );
* \endcode
* This KInstance is comparable to KGlobal used by normal applications.
- * It allows you to tqfind resource files (images, XML, sound etc.) belonging
+ * It allows you to find resource files (images, XML, sound etc.) belonging
* to the library.
*
* If you want to load a library, use KLibLoader. You can query KLibLoader
@@ -322,7 +322,7 @@ private:
* The KLibFactory is used to create the components, the library has to offer.
* The factory of KSpread for example will create instances of KSpreadDoc,
* while the Konqueror factory will create KonqView widgets.
- * All objects created by the factory must be derived from TQObject, since TQObject
+ * All objects created by the factory must be derived from TQObject, since QObject
* offers type safe casting.
*
* KLibFactory is an abstract class. Reimplement the
@@ -330,7 +330,7 @@ private:
*
* @author Torben Weis <weis@kde.org>
*/
-class KDECORE_EXPORT KLibFactory : public TQObject
+class KDECORE_EXPORT KLibFactory : public QObject
{
Q_OBJECT
public: