diff options
Diffstat (limited to 'kioslave/http/http.cc')
-rw-r--r-- | kioslave/http/http.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kioslave/http/http.cc b/kioslave/http/http.cc index 16b785d03..bb9eb5866 100644 --- a/kioslave/http/http.cc +++ b/kioslave/http/http.cc @@ -5011,7 +5011,7 @@ void HTTPProtocol::cleanCache() { // Touch file. utime(TQFile::encodeName(cleanFile), 0); - KApplication::startServiceByDesktopPath("http_cache_cleaner.desktop"); + TDEApplication::startServiceByDesktopPath("http_cache_cleaner.desktop"); } } @@ -5789,7 +5789,7 @@ TQString HTTPProtocol::createDigestAuth ( bool isForProxy ) info.qop = ""; // cnonce is recommended to contain about 64 bits of entropy - info.cnonce = KApplication::randomString(16).latin1(); + info.cnonce = TDEApplication::randomString(16).latin1(); // HACK: Should be fixed according to RFC 2617 section 3.2.2 info.nc = "00000001"; |