diff --git a/src/app/qml/main.qml b/src/app/qml/main.qml
index 25ae714249b1cf29d87acc0987721c03a36d8c42..4ad2414fd1ed3c2961f56a78154eda587e9a907f 100644
--- a/src/app/qml/main.qml
+++ b/src/app/qml/main.qml
@@ -6,7 +6,7 @@ import QtQuick.Dialogs 1.2
 import "scripts/Utility.js" as Utility
 
 Window {
-    id: root
+    id: app
     title: Qt.application.name
     width: 400
     height: 200
@@ -17,7 +17,7 @@ Window {
 
     MessageDialog {
         id: confirmDialog
-        title: root.title
+        title: app.title
         icon: StandardIcon.Question
         text: ""
         informativeText: ""
@@ -29,7 +29,7 @@ Window {
 
     MessageDialog {
         id: infoDialog
-        title: root.title
+        title: app.title
         icon: StandardIcon.Information
         text: ""
         informativeText: ""
@@ -44,7 +44,7 @@ Window {
 
     MessageDialog {
         id: errorDialog
-        title: root.title
+        title: app.title
         icon: StandardIcon.Warning
         text: ""
         informativeText: ""
@@ -55,7 +55,7 @@ Window {
 
     Dialog {
         id: progressDialog
-        title: root.title
+        title: app.title
         property alias primaryLabel: primaryLabel
         property alias informativeLabel: informativeLabel
         property alias progressBar: progressBar