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 /kfind/kquery.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 'kfind/kquery.h')
-rw-r--r-- | kfind/kquery.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kfind/kquery.h b/kfind/kquery.h index 5ddc334fd..4b6a1c898 100644 --- a/kfind/kquery.h +++ b/kfind/kquery.h @@ -23,7 +23,7 @@ class KQuery : public TQObject KQuery(TQObject *parent = 0, const char * name = 0); ~KQuery(); - void setSizeRange( int mode, KIO::filesize_t value1, KIO::filesize_t value2 ); + void setSizeRange( int mode, TDEIO::filesize_t value1, TDEIO::filesize_t value2 ); void setTimeRange( time_t from, time_t to ); void setRegExp( const TQString ®exp, bool caseSensitive ); void setRecursive( bool recursive ); @@ -50,9 +50,9 @@ class KQuery : public TQObject void slotListEntries(TQStringList); protected slots: /* List of files found using KIO */ - void slotListEntries(KIO::Job *, const KIO::UDSEntryList &); - void slotResult(KIO::Job *); - void slotCanceled(KIO::Job *); + void slotListEntries(TDEIO::Job *, const TDEIO::UDSEntryList &); + void slotResult(TDEIO::Job *); + void slotCanceled(TDEIO::Job *); void slotreceivedSdtout(TDEProcess*,char*,int); void slotreceivedSdterr(TDEProcess*,char*,int); void slotendProcessLocate(TDEProcess*); @@ -66,8 +66,8 @@ class KQuery : public TQObject int m_filetype; int m_sizemode; - KIO::filesize_t m_sizeboundary1; - KIO::filesize_t m_sizeboundary2; + TDEIO::filesize_t m_sizeboundary1; + TDEIO::filesize_t m_sizeboundary2; KURL m_url; time_t m_timeFrom; time_t m_timeTo; @@ -89,7 +89,7 @@ class KQuery : public TQObject TDEProcess *processLocate; TQPtrList<TQRegExp> m_regexps;// regexps for file name // TQValueList<bool> m_regexpsContainsGlobs; // what should this be good for ? Alex - KIO::ListJob *job; + TDEIO::ListJob *job; bool m_insideCheckEntries; TQPtrQueue<KFileItem> m_fileItems; TQRegExp* metaKeyRx; |