1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

OP-984 Commented out some annoying debug prints.

This commit is contained in:
Fredrik Arvidsson 2014-01-11 16:14:12 +01:00
parent 38a709a0da
commit b43cf9a7fe

View File

@ -666,6 +666,7 @@ void ConfigTaskWidget::autoLoadWidgets()
refreshWidgetsValues();
forceShadowUpdates();
/*
foreach(WidgetBinding * binding, m_widgetBindingsPerObject) {
if (binding->widget()) {
qDebug() << "Binding :" << binding->widget()->objectName();
@ -681,6 +682,7 @@ void ConfigTaskWidget::autoLoadWidgets()
}
}
}
*/
}
void ConfigTaskWidget::addWidgetToReloadGroups(QWidget *widget, QList<int> *reloadGroupIDs)
@ -1154,9 +1156,11 @@ QVariant WidgetBinding::value() const
void WidgetBinding::setValue(const QVariant &value)
{
m_value = value;
/*
if (m_object && m_field) {
qDebug() << "WidgetBinding" << m_object->getName() << ":" << m_field->getName() << "value =" << value.toString();
}
*/
}
void WidgetBinding::updateObjectFieldFromValue()