diff options
Diffstat (limited to 'kio/misc/ksendbugmail/smtp.h')
-rw-r--r-- | kio/misc/ksendbugmail/smtp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kio/misc/ksendbugmail/smtp.h b/kio/misc/ksendbugmail/smtp.h index 707d20ae4..b8e782cb9 100644 --- a/kio/misc/ksendbugmail/smtp.h +++ b/kio/misc/ksendbugmail/smtp.h @@ -7,7 +7,7 @@ #include <tqtimer.h> #include <ksock.h> -/*int SMTPServerStatus[] = { +/*int SMTPServertqStatus[] = { 220, // greeting from server 221, // server acknolages goodbye 250, // command successful @@ -17,7 +17,7 @@ 0 // null }; -int SMTPClientStatus[] = { +int SMTPClienttqStatus[] = { 50, // not logged in yet. 100, // logged in, got 220 150, // sent helo, got 250 @@ -37,7 +37,7 @@ int SMTPClientStatus[] = { #define SMTP_READ_BUFFER_SIZE 256 -class SMTP:public QObject +class SMTP:public TQObject { Q_OBJECT public: @@ -66,7 +66,7 @@ public: READYDATA = 354, // server ready to receive data ERROR = 501, // error UNKNOWN = 550 // user unknown - }SMTPServerStatus; + }SMTPServertqStatus; typedef enum { INIT = 50, // not logged in yet @@ -79,7 +79,7 @@ public: QUIT = 400, // sent QUIT, got 221 OUT = 450, // finished, logged out CERROR = 500 // didn't finish, had error or connection drop - }SMTPClientStatus; + }SMTPClienttqStatus; typedef enum { NOERROR = 0, @@ -125,9 +125,9 @@ private: TQString messageSubject; TQString messageBody, messageHeader; - SMTPClientStatus state; - SMTPClientStatus lastState; - SMTPServerStatus serverState; + SMTPClienttqStatus state; + SMTPClienttqStatus lastState; + SMTPServertqStatus serverState; TQString domainName; |