diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kmail/messagesender.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/messagesender.h')
-rw-r--r-- | kmail/messagesender.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/messagesender.h b/kmail/messagesender.h index 4f25b378c..0c45923b9 100644 --- a/kmail/messagesender.h +++ b/kmail/messagesender.h @@ -32,7 +32,7 @@ #ifndef __KMAIL_MESSAGESENDER_H__ #define __KMAIL_MESSAGESENDER_H__ -#include <qstring.h> +#include <tqstring.h> class KMMessage; @@ -74,7 +74,7 @@ public: @return true on success. */ - bool sendQueued( const QString & transport=QString::null ) { return doSendQueued( transport ); } + bool sendQueued( const TQString & transport=TQString::null ) { return doSendQueued( transport ); } virtual void readConfig() = 0; virtual void writeConfig( bool withSync = true ) = 0; @@ -86,7 +86,7 @@ public: virtual void setSendQuotedPrintable( bool qp ) = 0; protected: virtual bool doSend( KMMessage * msg, short sendNow ) = 0; - virtual bool doSendQueued( const QString& transport ) = 0; + virtual bool doSendQueued( const TQString& transport ) = 0; }; inline MessageSender::~MessageSender() {} |