From 09bd73fbd2ff59f5e6eb420a5c1f22d61ceeaf66 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 30 Jan 2013 13:51:03 -0600 Subject: Fix a few remaining references to kio_ --- korn/kio.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'korn/kio.cpp') 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 //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; } @@ -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; -- cgit v1.2.1