diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdecore/klibloader.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/klibloader.h')
-rw-r--r-- | kdecore/klibloader.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdecore/klibloader.h b/kdecore/klibloader.h index b1a1bc330..d5f811faf 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 QObject +class KDECORE_EXPORT KLibrary : public TQObject { 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 QObject +class KDECORE_EXPORT KLibLoader : public TQObject { 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 find resource files (images, XML, sound etc.) belonging + * It allows you to tqfind 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 QObject + * All objects created by the factory must be derived from TQObject, since TQObject * 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 QObject +class KDECORE_EXPORT KLibFactory : public TQObject { Q_OBJECT public: |