summaryrefslogtreecommitdiffstats
path: root/kioslaves/imap4/imap4.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-09-18 23:43:22 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-09-18 23:43:22 +0000
commitbd4d40e62f0ade42fbc594c1c87dfc93dfab8c99 (patch)
tree0846110ee822a57b2b7d9f08422282b03f0504b5 /kioslaves/imap4/imap4.cc
parent3bbd9f8c37af59661292e14ec82088ffb09195e2 (diff)
downloadtdepim-bd4d40e62f0ade42fbc594c1c87dfc93dfab8c99.tar.gz
tdepim-bd4d40e62f0ade42fbc594c1c87dfc93dfab8c99.zip
Fix a number of strings in Trinity that were incorrectly converted to TQ* from Q*
This fixes the Kopete MSN protocol among other things git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1254372 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslaves/imap4/imap4.cc')
-rw-r--r--kioslaves/imap4/imap4.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslaves/imap4/imap4.cc b/kioslaves/imap4/imap4.cc
index 12cf93e1..6e9b1f3e 100644
--- a/kioslaves/imap4/imap4.cc
+++ b/kioslaves/imap4/imap4.cc
@@ -1330,10 +1330,10 @@ IMAP4Protocol::special (const TQByteArray & aData)
// quota
int cmd;
stream >> cmd;
- if ( hasCapability( "TQUOTA" ) ) {
+ if ( hasCapability( "QUOTA" ) ) {
specialQuotaCommand( cmd, stream );
} else {
- error( ERR_UNSUPPORTED_ACTION, "TQUOTA" );
+ error( ERR_UNSUPPORTED_ACTION, "QUOTA" );
}
break;
}
@@ -1720,7 +1720,7 @@ IMAP4Protocol::specialQuotaCommand( int command, TQDataStream& stream )
switch( command ) {
case 'R': // GETQUOTAROOT
{
- kdDebug(7116) << "TQUOTAROOT " << aBox << endl;
+ kdDebug(7116) << "QUOTAROOT " << aBox << endl;
imapCommand *cmd = doCommand(imapCommand::clientGetQuotaroot( aBox ) );
if (cmd->result () != "OK")
{