summaryrefslogtreecommitdiffstats
path: root/kioslave/pop3/pop3.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
commitcc74f360bb40da3d79f58048f8e8611804980aa6 (patch)
treec4385d2c16b904757b1c8bb998a4aec6993373f7 /kioslave/pop3/pop3.h
parent79b21d47bce1ee428affc97534cd8b257232a871 (diff)
downloadtdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz
tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/pop3/pop3.h')
-rw-r--r--kioslave/pop3/pop3.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kioslave/pop3/pop3.h b/kioslave/pop3/pop3.h
index 9c6ca9185..60b23c3e8 100644
--- a/kioslave/pop3/pop3.h
+++ b/kioslave/pop3/pop3.h
@@ -39,7 +39,7 @@
#define MAX_PACKET_LEN 4096
-class POP3Protocol:public KIO::TCPSlaveBase {
+class POP3Protocol:public TDEIO::TCPSlaveBase {
public:
POP3Protocol(const TQCString & pool, const TQCString & app, bool SSL);
virtual ~ POP3Protocol();
@@ -107,17 +107,17 @@ protected:
/**
* Authenticate via APOP
*/
- int loginAPOP( char *challenge, KIO::AuthInfo &ai );
+ int loginAPOP( char *challenge, TDEIO::AuthInfo &ai );
- bool saslInteract( void *in, KIO::AuthInfo &ai );
+ bool saslInteract( void *in, TDEIO::AuthInfo &ai );
/**
* Authenticate via SASL
*/
- int loginSASL( KIO::AuthInfo &ai );
+ int loginSASL( TDEIO::AuthInfo &ai );
/**
* Authenticate via traditional USER/PASS
*/
- bool loginPASS( KIO::AuthInfo &ai );
+ bool loginPASS( TDEIO::AuthInfo &ai );
int m_cmd;
unsigned short int m_iOldPort;