summaryrefslogtreecommitdiff
path: root/src/opensearch/suggestionparser.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-07-19 23:00:41 +0200
committerAndrea Diamantini <adjam7@gmail.com>2011-07-19 23:00:41 +0200
commit1d1a6867589a8e71755624e1e9d9e8b95a5a1156 (patch)
tree35f54c5ad7edfb58af4c3a1db3e0dc8a83da9af6 /src/opensearch/suggestionparser.cpp
parentAdded UI option to configure the "Do Not Track" feature (diff)
downloadrekonq-1d1a6867589a8e71755624e1e9d9e8b95a5a1156.tar.xz
Calm down kDebug messages
Diffstat (limited to 'src/opensearch/suggestionparser.cpp')
-rw-r--r--src/opensearch/suggestionparser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opensearch/suggestionparser.cpp b/src/opensearch/suggestionparser.cpp
index 0e390d99..6b467353 100644
--- a/src/opensearch/suggestionparser.cpp
+++ b/src/opensearch/suggestionparser.cpp
@@ -107,7 +107,7 @@ ResponseList JSONParser::parse(const QByteArray &resp)
if(response.isEmpty())
{
- kDebug() << "RESPONSE IS EMPTY";
+ // RESPONSE IS EMPTY
return ResponseList();
}
@@ -115,14 +115,14 @@ ResponseList JSONParser::parse(const QByteArray &resp)
|| !response.endsWith(QL1C(']'))
)
{
- kDebug() << "RESPONSE is NOT well FORMED";
+ // RESPONSE is NOT well FORMED
return ResponseList();
}
// Evaluate the JSON response using QtScript.
if(!m_reader.canEvaluate(response))
{
- kDebug() << "m_reader cannot evaluate the response";
+ // m_reader cannot evaluate the response
return ResponseList();
}
@@ -130,7 +130,7 @@ ResponseList JSONParser::parse(const QByteArray &resp)
if(!responseParts.property(1).isArray())
{
- kDebug() << "RESPONSE is not an array";
+ // RESPONSE is not an array
return ResponseList();
}