diff options
Diffstat (limited to 'qml/mw-ui.qml')
-rw-r--r-- | qml/mw-ui.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index c7b2857..e00c5f7 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -102,7 +102,7 @@ and help you with the configuration of your newly installed system. Button { Layout.maximumWidth: slideshow.width * .25 objectName: "launch" - onClicked: { launch.command("drakrpm-edit-media")} + onClicked: { launch.command(["drakrpm-edit-media",])} style: ButtonStyle { label: Label { text: qsTr("Edit software repositories")+" *"; @@ -187,7 +187,7 @@ It is highly recommended that you update your system regularly. An Update icon w anchors.verticalCenter: parent.verticalCenter Button { objectName: "launch" - onClicked:{ launch.command("drakrpm-update")} + onClicked:{ launch.command(["drakrpm-update",])} style: ButtonStyle { label: Label { text: qsTr("Check system update"); @@ -232,7 +232,7 @@ It is highly recommended that you update your system regularly. An Update icon w Button { id: mcc objectName: "launch" - onClicked: { launch.command("drakconf")} + onClicked: { launch.command(["drakconf"])} style: ButtonStyle { label: Label { text: qsTr("Mageia Control Center"); |