diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
commit | 79b21d47bce1ee428affc97534cd8b257232a871 (patch) | |
tree | 0df1fa0109d9f2bcef932eda8b5c25b2e06669ed /khelpcenter/searchhandler.h | |
parent | 9a898d493f493adbc404f7223043c85f3817472b (diff) | |
download | tdebase-79b21d47bce1ee428affc97534cd8b257232a871.tar.gz tdebase-79b21d47bce1ee428affc97534cd8b257232a871.zip |
Rename KGlobal, KProcess, and KClipboard 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 13a6a56c1..356446db5 100644 --- a/khelpcenter/searchhandler.h +++ b/khelpcenter/searchhandler.h @@ -38,7 +38,7 @@ class SearchJob DocEntry *mEntry; - KProcess *mProcess; + TDEProcess *mProcess; KIO::Job *mKioJob; TQString mCmd; @@ -71,9 +71,9 @@ class SearchHandler : public QObject bool checkBinary( const TQString &cmd ) const; protected slots: - void searchStdout( KProcess *proc, char *buffer, int buflen ); - void searchStderr( KProcess *proc, char *buffer, int buflen ); - void searchExited( KProcess *proc ); + void searchStdout( TDEProcess *proc, char *buffer, int buflen ); + void searchStderr( TDEProcess *proc, char *buffer, int buflen ); + void searchExited( TDEProcess *proc ); void slotJobResult( KIO::Job *job ); void slotJobData( KIO::Job *, const TQByteArray &data ); @@ -88,7 +88,7 @@ class SearchHandler : public QObject TQString mIndexCommand; TQStringList mDocumentTypes; - TQMap<KProcess *,SearchJob *> mProcessJobs; + TQMap<TDEProcess *,SearchJob *> mProcessJobs; TQMap<KIO::Job *,SearchJob *> mKioJobs; }; |