diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
commit | 7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch) | |
tree | c76702a7f6310fbe9d437e347535422e836e94e9 /tdecore/kmimesourcefactory.h | |
parent | a2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff) | |
parent | 27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff) | |
download | tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'tdecore/kmimesourcefactory.h')
-rw-r--r-- | tdecore/kmimesourcefactory.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tdecore/kmimesourcefactory.h b/tdecore/kmimesourcefactory.h index bf5b67d4c..8292cda42 100644 --- a/tdecore/kmimesourcefactory.h +++ b/tdecore/kmimesourcefactory.h @@ -23,16 +23,16 @@ #define KMIMESOURCEFACTORY_H #include <tqmime.h> -#include <kglobal.h> +#include <tdeglobal.h> class KMimeSourceFactoryPrivate; -class KInstance; +class TDEInstance; /** - * An extension to TQMimeSourceFactory that uses KIconLoader to + * An extension to TQMimeSourceFactory that uses TDEIconLoader to * find images. * - * Normally you don't have to instantiate this class at all, KApplication does that for + * Normally you don't have to instantiate this class at all, TDEApplication does that for * you automagically and sets TQMimeSourceFactory::setDefaultFactory(). * * @author Peter Putzer <putzer@kde.org> @@ -46,7 +46,7 @@ public: * * @param loader is the iconloader used to find images. */ - KMimeSourceFactory (KIconLoader* loader = KGlobal::iconLoader()); + KMimeSourceFactory (TDEIconLoader* loader = TDEGlobal::iconLoader()); /** * Destructor. @@ -74,10 +74,10 @@ protected: private: /** * @internal - * Associate with a KInstance so we can pull its iconLoader() when need arises. + * Associate with a TDEInstance so we can pull its iconLoader() when need arises. */ - friend class KInstance; - void setInstance(KInstance *); + friend class TDEInstance; + void setInstance(TDEInstance *); KMimeSourceFactoryPrivate* d; }; |