diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-17 02:03:21 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-17 02:03:21 +0100 |
commit | 3fcb4e226ebe126f6c3a289d34f1b6a83c1444c1 (patch) | |
tree | 4a9b7ed9ede825c7c11e1f024f11e9c4c01eafb1 /src/cookiejar.cpp | |
parent | Enhanced CMakeLists.txt (diff) | |
download | rekonq-3fcb4e226ebe126f6c3a289d34f1b6a83c1444c1.tar.xz |
qDebug && qWarning --> kDebug && kWarning
Diffstat (limited to 'src/cookiejar.cpp')
-rw-r--r-- | src/cookiejar.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cookiejar.cpp b/src/cookiejar.cpp index b513f88a..87d84def 100644 --- a/src/cookiejar.cpp +++ b/src/cookiejar.cpp @@ -26,13 +26,13 @@ // KDE Includes #include <KConfig> #include <KStandardDirs> +#include <KDebug> // Qt Includes #include <QtCore> #include <QtGui> #include <QtWebKit> -#include <QDebug> static const unsigned int JAR_VERSION = 23; @@ -65,7 +65,7 @@ QDataStream &operator>>(QDataStream &stream, QList<QNetworkCookie> &list) QList<QNetworkCookie> newCookies = QNetworkCookie::parseCookies(value); if (newCookies.count() == 0 && value.length() != 0) { - qWarning() << "CookieJar: Unable to parse saved cookie:" << value; + kWarning() << "CookieJar: Unable to parse saved cookie:" << value; } for (int j = 0; j < newCookies.count(); ++j) list.append(newCookies.at(j)); @@ -282,7 +282,7 @@ bool CookieJar::setCookiesFromUrl(const QList<QNetworkCookie> &cookieList, const } #if 0 else - qWarning() << "setCookiesFromUrl failed" << url << cookieList.value(0).toRawForm(); + kWarning() << "setCookiesFromUrl failed" << url << cookieList.value(0).toRawForm(); #endif } } |