summaryrefslogtreecommitdiffstats
path: root/korn/tdeio_count.h
diff options
context:
space:
mode:
Diffstat (limited to 'korn/tdeio_count.h')
-rw-r--r--korn/tdeio_count.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/korn/tdeio_count.h b/korn/tdeio_count.h
index e575864e..51258694 100644
--- a/korn/tdeio_count.h
+++ b/korn/tdeio_count.h
@@ -23,12 +23,12 @@
#include <tqobject.h>
-#include "kio.h" //Alsewise, no access to KKioDrop::FileInfo (needed in template)
+#include "tdeio.h" //Alsewise, no access to KKioDrop::FileInfo (needed in template)
#include <tdeio/global.h> //FIXME: without this, moc-compiler fails.
-class KIO_Protocol;
-class KIO_Single_Subject;
+class TDEIO_Protocol;
+class TDEIO_Single_Subject;
class KKioDrop;
class KornMailSubject;
@@ -41,12 +41,12 @@ class KURL;
class TQString;
-class KIO_Count : public TQObject
+class TDEIO_Count : public TQObject
{ Q_OBJECT
public:
- KIO_Count( TQObject * parent = 0, const char * name = 0 );
- ~KIO_Count();
+ TDEIO_Count( TQObject * parent = 0, const char * name = 0 );
+ ~TDEIO_Count();
//This function starts counting
void count( KKioDrop* );
@@ -56,12 +56,12 @@ public:
void stopActiveCount();
private:
- KKioDrop *_kio;
+ KKioDrop *_tdeio;
TDEIO::ListJob *_job;
TDEIO::Slave *_slave;
KURL *_kurl;
TDEIO::MetaData *_metadata;
- const KIO_Protocol *_protocol;
+ const TDEIO_Protocol *_protocol;
bool _valid;
TQValueList<KKioDrop::FileInfo> *_new_mailurls; //entries can come with more function calls.
int _subjects_pending;
@@ -76,7 +76,7 @@ private slots:
void entries( TDEIO::Job*, const TDEIO::UDSEntryList &list );
void addtoPassivePopup( KornMailSubject* );
- void deleteSingleSubject( KIO_Single_Subject* );
+ void deleteSingleSubject( TDEIO_Single_Subject* );
};
#endif