Skip to content
Snippets Groups Projects
Commit a8ada958 authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.PropertyEditor: remove print statements


Some cleanup of print statements.

Change-Id: I9f1d83c988e2658c2e85f58a891c07047f4d64c1
Reviewed-by: default avatarMarco Bubke <marco.bubke@digia.com>
parent dcd6a9e9
No related branches found
No related tags found
No related merge requests found
......@@ -52,8 +52,6 @@ Controls.CheckBox {
QtObject {
property int valueFromBackend: checkBox.backendValue.value;
onValueFromBackendChanged: {
print("blah");
checkBox.checked = valueFromBackend;
}
}
......
......@@ -112,9 +112,6 @@ Column {
}
onToggled: {
print("index " + index)
print("state " + checked)
if (index === 0) {
colorEditor.color = "#ffffff"
}
......
......@@ -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;
}
}
......
......@@ -46,8 +46,6 @@ Controls.SpinBox {
QtObject {
property int valueFromBackend: spinBox.backendValue.value;
onValueFromBackendChanged: {
print("blah");
spinBox.value = valueFromBackend;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment