From 2003e72a37363c9b7700ab9a85ada52d5724381a Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Tue, 9 Mar 2010 22:18:23 +0000 Subject: [PATCH] not needed atm svn path=/trunk/KDE/kdebase/runtime/; revision=1101326 --- scriptengines/javascript/simplebindings/dataengine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scriptengines/javascript/simplebindings/dataengine.h b/scriptengines/javascript/simplebindings/dataengine.h index fbeb24705..82df668d2 100644 --- a/scriptengines/javascript/simplebindings/dataengine.h +++ b/scriptengines/javascript/simplebindings/dataengine.h @@ -42,7 +42,7 @@ Q_DECLARE_METATYPE(DataEngine::Data) template QScriptValue qScriptValueFromMap(QScriptEngine *eng, const M &map) { - kDebug() << "qScriptValueFromMap called"; + //kDebug() << "qScriptValueFromMap called"; QScriptValue obj = eng->newObject(); typename M::const_iterator begin = map.constBegin(); typename M::const_iterator end = map.constEnd(); @@ -57,7 +57,7 @@ QScriptValue qScriptValueFromMap(QScriptEngine *eng, const M &map) template void qScriptValueToMap(const QScriptValue &value, M &map) { - kDebug() << "qScriptValueToMap called"; + //kDebug() << "qScriptValueToMap called"; QScriptValueIterator it(value); while (it.hasNext()) { it.next();