From 757e1d4a3e94fa9a894078ddf2bd21ea70d9eb29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Thu, 22 Aug 2013 04:47:29 +0200 Subject: [PATCH] Coding style --- .../contents/configuration/AppletConfiguration.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/shell/qmlpackages/desktop/contents/configuration/AppletConfiguration.qml b/src/shell/qmlpackages/desktop/contents/configuration/AppletConfiguration.qml index 8d9cd43ff..eddd23761 100644 --- a/src/shell/qmlpackages/desktop/contents/configuration/AppletConfiguration.qml +++ b/src/shell/qmlpackages/desktop/contents/configuration/AppletConfiguration.qml @@ -217,11 +217,11 @@ Rectangle { text: "Ok" onClicked: { if (main.currentItem.saveConfig !== undefined) { - main.currentItem.saveConfig() + main.currentItem.saveConfig(); } else { - root.saveConfig() + root.saveConfig(); } - configDialog.close() + configDialog.close(); } } QtControls.Button { @@ -229,9 +229,9 @@ Rectangle { text: "Apply" onClicked: { if (main.currentItem.saveConfig !== undefined) { - main.currentItem.saveConfig() + main.currentItem.saveConfig(); } else { - root.saveConfig() + root.saveConfig(); } } }