summaryrefslogtreecommitdiff
path: root/src/actionseditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/actionseditor.cpp')
-rw-r--r--src/actionseditor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/actionseditor.cpp b/src/actionseditor.cpp
index 875f12b..627c760 100644
--- a/src/actionseditor.cpp
+++ b/src/actionseditor.cpp
@@ -594,6 +594,7 @@ QAction * ActionsEditor::findAction(QObject *o, const QString & name) {
QList<QAction *> actions = o->findChildren<QAction *>();
for (int n=0; n < actions.count(); n++) {
action = static_cast<QAction*> (actions[n]);
+ /* qDebug("ActionsEditor::findAction: %s", action->objectName().toLatin1().constData()); */
if (name == action->objectName()) return action;
}