summaryrefslogtreecommitdiffstats
path: root/kioslaves/imap4/imapcommand.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kioslaves/imap4/imapcommand.cc')
-rw-r--r--kioslaves/imap4/imapcommand.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/kioslaves/imap4/imapcommand.cc b/kioslaves/imap4/imapcommand.cc
index 97956200..65a9227d 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 *