diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 13:51:03 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-30 13:51:03 -0600 |
commit | 09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66 (patch) | |
tree | c77ad40eb1b04ef22a48da51b73ff8f65745894e /korn/kio.cpp | |
parent | bc423466604bce42cfce1e227a8f6a8892dba2d8 (diff) | |
download | tdepim-09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66.tar.gz tdepim-09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66.zip |
Fix a few remaining references to kio_
Diffstat (limited to 'korn/kio.cpp')
-rw-r--r-- | korn/kio.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/korn/kio.cpp b/korn/kio.cpp index f2ff37fa5..195f73d8c 100644 --- a/korn/kio.cpp +++ b/korn/kio.cpp @@ -28,10 +28,10 @@ */ #include "kio.h" -#include "kio_count.h" -#include "kio_subjects.h" -#include "kio_read.h" -#include "kio_delete.h" +#include "tdeio_count.h" +#include "tdeio_subjects.h" +#include "tdeio_read.h" +#include "tdeio_delete.h" #include "protocol.h" #include "protocols.h" #include "stringid.h" @@ -57,7 +57,7 @@ #include<stdlib.h> //Headers of protocols -#include"kio_proto.h" +#include"tdeio_proto.h" //#include"pop3_proto.h" //#include"pop3s_proto.h" //#include"imap_proto.h" @@ -98,16 +98,16 @@ KKioDrop::KKioDrop() //Creating children and connect them to the outside world; this class passes the messages for them... //This class handles all the counting. - _count = new KIO_Count( this, "kio_count" ); + _count = new KIO_Count( this, "tdeio_count" ); //This class is responsible for providing the available subjects - _subjects = new KIO_Subjects( this, "kio_subjects" ); + _subjects = new KIO_Subjects( this, "tdeio_subjects" ); //This class is used when a full message has to be read. - _read = new KIO_Read( this, "kio_read" ); + _read = new KIO_Read( this, "tdeio_read" ); //This class can delete mails. - _delete = new KIO_Delete( this, "kio_delete" ); + _delete = new KIO_Delete( this, "tdeio_delete" ); _mailurls = new TQValueList<FileInfo>; } @@ -136,16 +136,16 @@ KKioDrop::KKioDrop( TDEConfigGroup* ) //Creating children and connect them to the outside world; this class passes the messages for them... //This class handles all the counting. - _count = new KIO_Count( this, "kio_count" ); + _count = new KIO_Count( this, "tdeio_count" ); //This class is responsible for providing the available subjects - _subjects = new KIO_Subjects( this, "kio_subjects" ); + _subjects = new KIO_Subjects( this, "tdeio_subjects" ); //This class is used when a full message has to be read. - _read = new KIO_Read( this, "kio_read" ); + _read = new KIO_Read( this, "tdeio_read" ); //This class can delete mails. - _delete = new KIO_Delete( this, "kio_delete" ); + _delete = new KIO_Delete( this, "tdeio_delete" ); _mailurls = new TQValueList<FileInfo>; |