Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Commit

Permalink
Fix typo in QML/Javascript for linux platform
Browse files Browse the repository at this point in the history
See #115 (issuecomment-331536513)
  • Loading branch information
ColinDuquesnoy committed Sep 23, 2017
1 parent 2104021 commit 90b9964
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WizardPage {
property string authorName
property string authorUrl
property bool allPlatforms
property bool linuxPatform
property bool linuxPlatform
property bool appImagePlatform
property bool osxPlatform
property bool windowsPlatform
Expand All @@ -33,7 +33,7 @@ WizardPage {
}

Component.onCompleted: {
_streamingServices.createService(svName, svUrl, authorName, authorUrl, allPlatforms, linuxPatform, appImagePlatform, osxPlatform, windowsPlatform)
_streamingServices.createService(svName, svUrl, authorName, authorUrl, allPlatforms, linuxPlatform, appImagePlatform, osxPlatform, windowsPlatform)
}

Connections {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Dialog {
property string authorUrl
property string directory
property bool allPlatforms
property bool linuxPatform
property bool linuxPlatform
property bool appImagePlatform
property bool osxPlatform
property bool windowsPlatform
Expand Down Expand Up @@ -60,7 +60,7 @@ Dialog {
onAuthorNameChanged: wizard.authorName = authorName
onAuthorUrlChanged: wizard.authorUrl = authorUrl
onAllPlatformsChanged: wizard.allPlatforms = allPlatforms
onLinuxPlatformChanged: wizard.linuxPatform = linuxPatform
onLinuxPlatformChanged: wizard.linuxPlatform = linuxPlatform
onAppImagePlatformChanged: wizard.appImagePlatform = appImagePlatform
onOsxPlatformChanged: wizard.osxPlatform = osxPlatform
onWindowsPlatformChanged: wizard.windowsPlatform = windowsPlatform
Expand All @@ -78,7 +78,7 @@ Dialog {
authorName: wizard.authorName
authorUrl: wizard.authorUrl
allPlatforms: wizard.allPlatforms
linuxPatform: wizard.linuxPatform
linuxPlatform: wizard.linuxPlatform
appImagePlatform: wizard.appImagePlatform
osxPlatform: wizard.osxPlatform
windowsPlatform: wizard.windowsPlatform
Expand Down

0 comments on commit 90b9964

Please sign in to comment.