forked from qt-creator/qt-creator
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:
@@ -52,8 +52,6 @@ Controls.CheckBox {
|
|||||||
QtObject {
|
QtObject {
|
||||||
property int valueFromBackend: checkBox.backendValue.value;
|
property int valueFromBackend: checkBox.backendValue.value;
|
||||||
onValueFromBackendChanged: {
|
onValueFromBackendChanged: {
|
||||||
print("blah");
|
|
||||||
|
|
||||||
checkBox.checked = valueFromBackend;
|
checkBox.checked = valueFromBackend;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -112,9 +112,6 @@ Column {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onToggled: {
|
onToggled: {
|
||||||
print("index " + index)
|
|
||||||
print("state " + checked)
|
|
||||||
|
|
||||||
if (index === 0) {
|
if (index === 0) {
|
||||||
colorEditor.color = "#ffffff"
|
colorEditor.color = "#ffffff"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,10 +46,6 @@ Controls.TextField {
|
|||||||
QtObject {
|
QtObject {
|
||||||
property string valueFromBackend: lineEdit.backendValue.valueToString;
|
property string valueFromBackend: lineEdit.backendValue.valueToString;
|
||||||
onValueFromBackendChanged: {
|
onValueFromBackendChanged: {
|
||||||
print("blah LinEdit");
|
|
||||||
print(lineEdit.backendValue.value)
|
|
||||||
print(valueFromBackend)
|
|
||||||
|
|
||||||
lineEdit.text = valueFromBackend;
|
lineEdit.text = valueFromBackend;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,8 +46,6 @@ Controls.SpinBox {
|
|||||||
QtObject {
|
QtObject {
|
||||||
property int valueFromBackend: spinBox.backendValue.value;
|
property int valueFromBackend: spinBox.backendValue.value;
|
||||||
onValueFromBackendChanged: {
|
onValueFromBackendChanged: {
|
||||||
print("blah");
|
|
||||||
|
|
||||||
spinBox.value = valueFromBackend;
|
spinBox.value = valueFromBackend;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user