diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:07:43 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 20:33:03 +0900 |
| commit | 9e6ff2e17018fd8f6cfe1c08096503877ffcd9e4 (patch) | |
| tree | f2ddca6919259a3c2b39a96886edf4ebeff3b73f /plugins/webinterface/httpserver.cpp | |
| parent | 0dd6b6695093b65bbfdbd176ed661979666dbefa (diff) | |
| download | ktorrent-9e6ff2e17018fd8f6cfe1c08096503877ffcd9e4.tar.gz ktorrent-9e6ff2e17018fd8f6cfe1c08096503877ffcd9e4.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 84c57055d607cbb05adfacb46b1d8a21685c098a)
Diffstat (limited to 'plugins/webinterface/httpserver.cpp')
| -rw-r--r-- | plugins/webinterface/httpserver.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/webinterface/httpserver.cpp b/plugins/webinterface/httpserver.cpp index 24e847f..f7f9600 100644 --- a/plugins/webinterface/httpserver.cpp +++ b/plugins/webinterface/httpserver.cpp @@ -248,7 +248,7 @@ namespace kt void HttpServer::setDefaultResponseHeaders(HttpResponseHeader & hdr,const TQString & content_type,bool with_session_info) { hdr.setValue("Server","KTorrent/" KT_VERSION_MACRO); - hdr.setValue("Date",DateTimeToString(TQDateTime::currentDateTime(Qt::UTC),false)); + hdr.setValue("Date",DateTimeToString(TQDateTime::currentDateTime(TQt::UTC),false)); hdr.setValue("Content-Type",content_type); hdr.setValue("Connection","keep-alive"); if (with_session_info && session.sessionId && session.logged_in) @@ -351,7 +351,7 @@ namespace kt setDefaultResponseHeaders(rhdr,"text/html",true); rhdr.setValue("Cache-Control","max-age=0"); rhdr.setValue("Last-Modified",DateTimeToString(fi.lastModified(),false)); - rhdr.setValue("Expires",DateTimeToString(TQDateTime::currentDateTime(Qt::UTC).addSecs(3600),false)); + rhdr.setValue("Expires",DateTimeToString(TQDateTime::currentDateTime(TQt::UTC).addSecs(3600),false)); hdlr->sendResponse(rhdr); return; } @@ -361,7 +361,7 @@ namespace kt HttpResponseHeader rhdr(200); setDefaultResponseHeaders(rhdr,ExtensionToContentType(ext),true); rhdr.setValue("Last-Modified",DateTimeToString(fi.lastModified(),false)); - rhdr.setValue("Expires",DateTimeToString(TQDateTime::currentDateTime(Qt::UTC).addSecs(3600),false)); + rhdr.setValue("Expires",DateTimeToString(TQDateTime::currentDateTime(TQt::UTC).addSecs(3600),false)); rhdr.setValue("Cache-Control","private"); if (!hdlr->sendFile(rhdr,path)) { @@ -505,7 +505,7 @@ namespace kt d.setYMD(sl[3].toInt(),m,sl[1].toInt()); - TQTime t = TQTime::fromString(sl[4],Qt::ISODate); + TQTime t = TQTime::fromString(sl[4],TQt::ISODate); return TQDateTime(d,t); } else if (sl.count() == 4) @@ -524,7 +524,7 @@ namespace kt d.setYMD(2000 + dl[2].toInt(),m,dl[0].toInt()); - TQTime t = TQTime::fromString(sl[2],Qt::ISODate); + TQTime t = TQTime::fromString(sl[2],TQt::ISODate); return TQDateTime(d,t); } else if (sl.count() == 5) @@ -539,7 +539,7 @@ namespace kt d.setYMD(sl[4].toInt(),m,sl[2].toInt()); - TQTime t = TQTime::fromString(sl[3],Qt::ISODate); + TQTime t = TQTime::fromString(sl[3],TQt::ISODate); return TQDateTime(d,t); } else |
