summaryrefslogtreecommitdiff
path: root/src/protocolhandler.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-05-22 23:43:46 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-05-22 23:43:46 +0200
commit370d5677ba15c4e41ba2513bbeed266fe69cbe41 (patch)
treed45d54f9644709f0f4324280c47999c7d5e7601e /src/protocolhandler.cpp
parentshow url on file:// && ftp:// schemes (diff)
downloadrekonq-370d5677ba15c4e41ba2513bbeed266fe69cbe41.tar.xz
Cleaning some kDebug calls
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r--src/protocolhandler.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp
index 3a9d61ef..568aa400 100644
--- a/src/protocolhandler.cpp
+++ b/src/protocolhandler.cpp
@@ -339,7 +339,7 @@ void ProtocolHandler::slotMostLocalUrlResult(KJob *job)
*/
void ProtocolHandler::abpHandling()
{
- kDebug() << _url;
+ kDebug() << "handling abp url: " << _url;
QString path = _url.path();
if (path != QL1S("subscribe"))
@@ -348,16 +348,9 @@ void ProtocolHandler::abpHandling()
QMap<QString, QString> map = _url.queryItems(KUrl::CaseInsensitiveKeys);
QString location = map.value(QL1S("location"));
- kDebug() << location;
-
QString title = map.value(QL1S("title"));
- kDebug() << title;
-
QString requireslocation = map.value(QL1S("requireslocation"));
- kDebug() << requireslocation;
-
QString requirestitle = map.value(QL1S("requirestitle"));
- kDebug() << requirestitle;
QString info;
if (requirestitle.isEmpty() || requireslocation.isEmpty())