QmlDesigner.PropertyEditor: remove print statements

Some cleanup of print statements.

Change-Id: I9f1d83c988e2658c2e85f58a891c07047f4d64c1
Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
Thomas Hartmann
2013-09-19 13:36:50 +02:00
parent dcd6a9e9cf
commit a8ada95821
4 changed files with 0 additions and 11 deletions

View File

@@ -52,8 +52,6 @@ Controls.CheckBox {
QtObject {
property int valueFromBackend: checkBox.backendValue.value;
onValueFromBackendChanged: {
print("blah");
checkBox.checked = valueFromBackend;
}
}

View File

@@ -112,9 +112,6 @@ Column {
}
onToggled: {
print("index " + index)
print("state " + checked)
if (index === 0) {
colorEditor.color = "#ffffff"
}

View File

@@ -46,10 +46,6 @@ Controls.TextField {
QtObject {
property string valueFromBackend: lineEdit.backendValue.valueToString;
onValueFromBackendChanged: {
print("blah LinEdit");
print(lineEdit.backendValue.value)
print(valueFromBackend)
lineEdit.text = valueFromBackend;
}
}

View File

@@ -46,8 +46,6 @@ Controls.SpinBox {
QtObject {
property int valueFromBackend: spinBox.backendValue.value;
onValueFromBackendChanged: {
print("blah");
spinBox.value = valueFromBackend;
}
}