changing method name to reflect recent change in code

This commit is contained in:
Wayne Chen 2019-04-23 16:50:54 -07:00
parent 9d43612d0d
commit 90e993844a
2 changed files with 3 additions and 3 deletions

View file

@ -952,7 +952,7 @@ Rectangle {
text: "LOG IN" text: "LOG IN"
onClicked: { onClicked: {
sendToScript({method: 'needsLogIn_loginClicked'}); sendToScript({method: 'marketplace_loginClicked'});
} }
} }

View file

@ -137,7 +137,7 @@ Item {
width: parent.width/2 - anchors.leftMargin*2; width: parent.width/2 - anchors.leftMargin*2;
text: "Cancel" text: "Cancel"
onClicked: { onClicked: {
sendToScript({method: 'needsLogIn_cancelClicked'}); sendToScript({method: 'passphrasePopup_cancelClicked'});
} }
} }
@ -155,7 +155,7 @@ Item {
width: parent.width/2 - anchors.rightMargin*2; width: parent.width/2 - anchors.rightMargin*2;
text: "Log In" text: "Log In"
onClicked: { onClicked: {
sendToScript({method: 'needsLogIn_loginClicked'}); sendToScript({method: 'marketplace_loginClicked'});
} }
} }
} }