Skip to content
Snippets Groups Projects
Commit e5be24f5 authored by akiraohgaki's avatar akiraohgaki
Browse files

Change window id

parent b1ca0abc
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ import QtQuick.Dialogs 1.2 ...@@ -6,7 +6,7 @@ import QtQuick.Dialogs 1.2
import "scripts/Utility.js" as Utility import "scripts/Utility.js" as Utility
Window { Window {
id: root id: app
title: Qt.application.name title: Qt.application.name
width: 400 width: 400
height: 200 height: 200
...@@ -17,7 +17,7 @@ Window { ...@@ -17,7 +17,7 @@ Window {
MessageDialog { MessageDialog {
id: confirmDialog id: confirmDialog
title: root.title title: app.title
icon: StandardIcon.Question icon: StandardIcon.Question
text: "" text: ""
informativeText: "" informativeText: ""
...@@ -29,7 +29,7 @@ Window { ...@@ -29,7 +29,7 @@ Window {
MessageDialog { MessageDialog {
id: infoDialog id: infoDialog
title: root.title title: app.title
icon: StandardIcon.Information icon: StandardIcon.Information
text: "" text: ""
informativeText: "" informativeText: ""
...@@ -44,7 +44,7 @@ Window { ...@@ -44,7 +44,7 @@ Window {
MessageDialog { MessageDialog {
id: errorDialog id: errorDialog
title: root.title title: app.title
icon: StandardIcon.Warning icon: StandardIcon.Warning
text: "" text: ""
informativeText: "" informativeText: ""
...@@ -55,7 +55,7 @@ Window { ...@@ -55,7 +55,7 @@ Window {
Dialog { Dialog {
id: progressDialog id: progressDialog
title: root.title title: app.title
property alias primaryLabel: primaryLabel property alias primaryLabel: primaryLabel
property alias informativeLabel: informativeLabel property alias informativeLabel: informativeLabel
property alias progressBar: progressBar property alias progressBar: progressBar
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment