summaryrefslogtreecommitdiffstats
path: root/plugins/webinterface/httpresponseheader.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
commit1c1403293485f35fd53db45aaa77a01cdd9627e7 (patch)
tree38559cd68cd4f63023fb5f6375def9db3b8b491e /plugins/webinterface/httpresponseheader.cpp
parent894f94545727610df22c4f73911d62d58266f695 (diff)
downloadktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.tar.gz
ktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.zip
TQt4 port ktorrent
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1238733 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/webinterface/httpresponseheader.cpp')
-rw-r--r--plugins/webinterface/httpresponseheader.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/webinterface/httpresponseheader.cpp b/plugins/webinterface/httpresponseheader.cpp
index da7556f..7b87892 100644
--- a/plugins/webinterface/httpresponseheader.cpp
+++ b/plugins/webinterface/httpresponseheader.cpp
@@ -21,7 +21,7 @@
namespace kt
{
- static QString ResponseCodeToString(int r)
+ static TQString ResponseCodeToString(int r)
{
switch (r)
{
@@ -30,7 +30,7 @@ namespace kt
case 304: return "Not Modified";
case 404: return "Not Found";
}
- return QString::null;
+ return TQString();
}
HttpResponseHeader::HttpResponseHeader(int response_code)
@@ -53,20 +53,20 @@ namespace kt
response_code = rc;
}
- void HttpResponseHeader::setValue(const QString & key,const QString & value)
+ void HttpResponseHeader::setValue(const TQString & key,const TQString & value)
{
fields[key] = value;
}
- QString HttpResponseHeader::toString() const
+ TQString HttpResponseHeader::toString() const
{
- QString str;
- str += QString("HTTP/1.1 %1 %2\r\n").arg(response_code).arg(ResponseCodeToString(response_code));
+ TQString str;
+ str += TQString("HTTP/1.1 %1 %2\r\n").tqarg(response_code).tqarg(ResponseCodeToString(response_code));
- QMap<QString,QString>::const_iterator itr = fields.begin();
+ TQMap<TQString,TQString>::const_iterator itr = fields.begin();
while (itr != fields.end())
{
- str += QString("%1: %2\r\n").arg(itr.key()).arg(itr.data());
+ str += TQString("%1: %2\r\n").tqarg(itr.key()).tqarg(itr.data());
itr++;
}
str += "\r\n";