From ee8f42c665468266b9e6d5989402033cd6e25318 Mon Sep 17 00:00:00 2001 From: Chani Armitage Date: Sat, 7 Feb 2009 17:55:08 +0000 Subject: [PATCH] change the name of the one to be implemented in js too svn path=/trunk/KDE/kdebase/workspace/plasma/scriptengines/javascript/; revision=922870 --- scriptengines/javascript/simplejavascriptapplet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scriptengines/javascript/simplejavascriptapplet.cpp b/scriptengines/javascript/simplejavascriptapplet.cpp index c6facb836..8555e21ca 100644 --- a/scriptengines/javascript/simplejavascriptapplet.cpp +++ b/scriptengines/javascript/simplejavascriptapplet.cpp @@ -198,9 +198,9 @@ void SimpleJavaScriptApplet::reportError() void SimpleJavaScriptApplet::configChanged() { - QScriptValue fun = m_self.property("configAccepted"); + QScriptValue fun = m_self.property("configChanged"); if (!fun.isFunction()) { - kDebug() << "Script: configAccepted is not a function, " << fun.toString(); + kDebug() << "Script: plasmoid.configChanged is not a function, " << fun.toString(); return; }