aboutsummaryrefslogtreecommitdiff
path: root/BasicPanel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'BasicPanel.qml')
-rw-r--r--BasicPanel.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/BasicPanel.qml b/BasicPanel.qml
index ff3fc7cb..d85b84f9 100644
--- a/BasicPanel.qml
+++ b/BasicPanel.qml
@@ -47,13 +47,13 @@ Rectangle {
property alias unlockedBalanceText : availableBalanceText.text;
// repeating signal to the outside world
signal paymentClicked(string address, string paymentId, double amount, int mixinCount,
- int priority)
+ int priority, string description)
Connections {
target: transferBasic
onPaymentClicked: {
console.log("BasicPanel: paymentClicked")
- root.paymentClicked(address, paymentId, amount, mixinCount, priority)
+ root.paymentClicked(address, paymentId, amount, mixinCount, priority, description)
}
}