Remove excessive debug in CommonDialog

This commit is contained in:
David Edmundson 2017-01-19 02:29:20 +00:00
parent 2c69d22546
commit 17830b10f8

View File

@ -73,7 +73,6 @@ PlasmaComponents.Dialog {
Accessible.role: Accessible.Dialog Accessible.role: Accessible.Dialog
onButtonTextsChanged: { onButtonTextsChanged: {
print("btex6tchanged:" + buttonTexts);
for (var i = buttonRow.children.length; i > 0; --i) { for (var i = buttonRow.children.length; i > 0; --i) {
buttonRow.children[i - 1].destroy() buttonRow.children[i - 1].destroy()
} }
@ -91,7 +90,6 @@ PlasmaComponents.Dialog {
onClicked: { onClicked: {
if (root.status == PlasmaComponents.DialogStatus.Open) { if (root.status == PlasmaComponents.DialogStatus.Open) {
print("Clicked...." + index);
root.buttonClicked(index) root.buttonClicked(index)
root.close() root.close()
} }