diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /khelpcenter/searchhandler.h | |
parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'khelpcenter/searchhandler.h')
-rw-r--r-- | khelpcenter/searchhandler.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/khelpcenter/searchhandler.h b/khelpcenter/searchhandler.h index 356446db5..31c3adb1f 100644 --- a/khelpcenter/searchhandler.h +++ b/khelpcenter/searchhandler.h @@ -25,7 +25,7 @@ #include <tqobject.h> #include <tqstringlist.h> -namespace KIO { +namespace TDEIO { class Job; } @@ -39,7 +39,7 @@ class SearchJob DocEntry *mEntry; TDEProcess *mProcess; - KIO::Job *mKioJob; + TDEIO::Job *mKioJob; TQString mCmd; @@ -75,8 +75,8 @@ class SearchHandler : public QObject void searchStderr( TDEProcess *proc, char *buffer, int buflen ); void searchExited( TDEProcess *proc ); - void slotJobResult( KIO::Job *job ); - void slotJobData( KIO::Job *, const TQByteArray &data ); + void slotJobResult( TDEIO::Job *job ); + void slotJobData( TDEIO::Job *, const TQByteArray &data ); private: SearchHandler(); @@ -89,7 +89,7 @@ class SearchHandler : public QObject TQStringList mDocumentTypes; TQMap<TDEProcess *,SearchJob *> mProcessJobs; - TQMap<KIO::Job *,SearchJob *> mKioJobs; + TQMap<TDEIO::Job *,SearchJob *> mKioJobs; }; } |