Fixed Qt.resolvedUrl format

This commit is contained in:
RebeccaStankus 2019-07-05 16:17:47 -07:00
parent 7b3fa22d0c
commit 352f9590b1
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
WebView {
id: entityListToolWebView
url: QT.resolvedURL("../html/entityList.html")
url: Qt.resolvedUrl("../html/entityList.html")
enabled: true
blurOnCtrlShift: false
}

View file

@ -247,7 +247,7 @@ TabBar {
property Component visualItem: Component {
WebView {
id: entityPropertiesWebView
url: Qt.resolvedURL("../entityProperties/html/entityProperties.html")
url: Qt.resolvedUrl("../entityProperties/html/entityProperties.html")
enabled: true
blurOnCtrlShift: false
}
@ -263,7 +263,7 @@ TabBar {
property Component visualItem: Component {
WebView {
id: gridControlsWebView
url: Qt.resolvedURL("../../html/gridControls.html")
url: Qt.resolvedUrl("../../html/gridControls.html")
enabled: true
blurOnCtrlShift: false
}