diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:33:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:33:36 -0600 |
commit | 3c5631f74d1c75204f950140331e10f739082ee9 (patch) | |
tree | a2811ff6c81d3c771745cde47734e65b1da3d806 /ksvg/core/KSVGLoader.h | |
parent | 6adb71382c3d5277c3dcbc4ec24c5ff36b4c07ef (diff) | |
download | tdegraphics-3c5631f74d1c75204f950140331e10f739082ee9.tar.gz tdegraphics-3c5631f74d1c75204f950140331e10f739082ee9.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'ksvg/core/KSVGLoader.h')
-rw-r--r-- | ksvg/core/KSVGLoader.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ksvg/core/KSVGLoader.h b/ksvg/core/KSVGLoader.h index f93280bd..69d61494 100644 --- a/ksvg/core/KSVGLoader.h +++ b/ksvg/core/KSVGLoader.h @@ -25,7 +25,7 @@ class KURL; -namespace KIO +namespace TDEIO { class Job; class TransferJob; @@ -44,7 +44,7 @@ struct ImageStreamMap; typedef struct { - KIO::Job *job; + TDEIO::Job *job; KJS::ExecState *exec; KJS::Object *callBackFunction, *status; } PostUrlData; @@ -73,8 +73,8 @@ signals: void imageReady(SVGImageElementImpl *); private slots: - void slotData(KIO::Job *, const TQByteArray &); - void slotResult(KIO::Job *); + void slotData(TDEIO::Job *, const TQByteArray &); + void slotResult(TDEIO::Job *); private: static TQString loadXML(::KURL); @@ -82,8 +82,8 @@ private: PostUrlData m_postUrlData; TQByteArray m_data; - KIO::TransferJob *m_job; - TQMap<KIO::TransferJob *, ImageStreamMap *> m_imageJobs; + TDEIO::TransferJob *m_job; + TQMap<TDEIO::TransferJob *, ImageStreamMap *> m_imageJobs; }; } |