Fix connect() warning - nobody reads the plasma startup warnings, apparently ;)

svn path=/trunk/KDE/kdelibs/; revision=918303
This commit is contained in:
David Faure 2009-01-29 19:11:15 +00:00
parent 457f6c8c90
commit 38133da2db

View File

@ -125,7 +125,7 @@ void ToolBox::addTool(QAction *action)
//make enabled/disabled tools appear/disappear instantly
connect(tool, SIGNAL(changed()), this, SLOT(updateToolBox()));
connect(tool, SIGNAL(triggered(bool)), this, SLOT(toolTriggered(bool)));
connect(action, SIGNAL(triggered(bool)), this, SLOT(toolTriggered(bool)));
//kDebug() << "added tool" << action->text() << (QGraphicsItem*)tool;
}