From a56a64125a6d86174faa63679f5db82d4653fb4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 7 Jun 2012 16:43:57 +0200 Subject: [PATCH] fix private slot name in connect BUG: 301365 FIXED-IN: 4.9b2 REVIEW: 105174 --- scripting/scriptedeffect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripting/scriptedeffect.cpp b/scripting/scriptedeffect.cpp index 44cea28054..610f02a81d 100644 --- a/scripting/scriptedeffect.cpp +++ b/scripting/scriptedeffect.cpp @@ -147,7 +147,7 @@ ScriptedEffect::ScriptedEffect() { connect(m_engine, SIGNAL(signalHandlerException(QScriptValue)), SLOT(signalHandlerException(QScriptValue))); #ifdef KWIN_BUILD_SCREENEDGES - connect(Workspace::self()->screenEdge(), SIGNAL(activated(ElectricBorder)), SLOT(borderActivated(ElectricBorder))); + connect(Workspace::self()->screenEdge(), SIGNAL(activated(ElectricBorder)), SLOT(slotBorderActivated(ElectricBorder))); #endif }