From 0aba0c3fc68712383774263d0906f8e996e1e9c0 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 25 Feb 2016 16:39:11 +0100 Subject: Cleanup --- framework/actions/action.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework') diff --git a/framework/actions/action.cpp b/framework/actions/action.cpp index 905f6f57..096c93cc 100644 --- a/framework/actions/action.cpp +++ b/framework/actions/action.cpp @@ -48,7 +48,7 @@ void Action::setContext(Context *context) //Get notified when any property changes for (int i = 0; i < context->metaObject()->propertyCount(); i++) { auto property = context->metaObject()->property(i) ; - qWarning() << "Property " << property.name() << property.hasNotifySignal() << property.notifySignal().name(); + // qWarning() << "Property " << property.name() << property.hasNotifySignal() << property.notifySignal().name(); if (QString(property.name()) != "objectName") { //We do what SIGNAL does to connect to the changed signal automatically QObject::connect(context, "2"+property.notifySignal().name()+"()", this, SLOT(contextChanged())); -- cgit v1.2.3