diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-13 00:46:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-13 00:46:47 +0000 |
commit | 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch) | |
tree | 5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /kioslaves/imap4/imapcommand.cc | |
parent | 2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff) | |
download | tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip |
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4,
however Qt3 builds are OK. Any alterations this commit makes to kdepim
behaviour under Qt3 are unintentional and should be fixed.
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslaves/imap4/imapcommand.cc')
-rw-r--r-- | kioslaves/imap4/imapcommand.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kioslaves/imap4/imapcommand.cc b/kioslaves/imap4/imapcommand.cc index 979562003..65a9227d0 100644 --- a/kioslaves/imap4/imapcommand.cc +++ b/kioslaves/imap4/imapcommand.cc @@ -58,7 +58,7 @@ imapCommand::imapCommand () { mComplete = false; - mId = TQString::null; + mId = TQString(); } imapCommand::imapCommand (const TQString & command, const TQString & parameter) @@ -69,7 +69,7 @@ imapCommand::imapCommand (const TQString & command, const TQString & parameter) mComplete = false; aCommand = command; aParameter = parameter; - mId = TQString::null; + mId = TQString(); } bool @@ -145,7 +145,7 @@ imapCommand::setParameter (const TQString & parameter) aParameter = parameter; } -const QString +const TQString imapCommand::getStr () { if (parameter().isEmpty()) @@ -236,7 +236,7 @@ imapCommand::clientAppend (const TQString & box, const TQString & flags, } imapCommand * -imapCommand::clienStatus (const TQString & path, const TQString & parameters) +imapCommand::clientqStatus (const TQString & path, const TQString & parameters) { return new imapCommand ("STATUS", TQString ("\"") + rfcDecoder::toIMAP (path) + @@ -397,7 +397,7 @@ imapCommand * imapCommand::clientGetQuotaroot( const TQString& box ) { TQString parameter = TQString("\"") + rfcDecoder::toIMAP (box) + '"'; - return new imapCommand ("GEQUOTAROOT", parameter); + return new imapCommand ("GETQUOTAROOT", parameter); } imapCommand * |