1
0

qml: consistency camelcase public slots qedaemon, qeinvoice, qewizard

This commit is contained in:
Sander van Grieken
2023-04-25 13:40:16 +02:00
parent 61179ede8c
commit 264540e12b
10 changed files with 18 additions and 18 deletions

View File

@@ -397,7 +397,7 @@ ElDialog {
if (invoice.amount.isEmpty) {
invoice.amountOverride = amountMax.checked ? MAX : Config.unitsToSats(amountBtc.text)
}
invoice.save_invoice()
invoice.saveInvoice()
app.stack.push(Qt.resolvedUrl('Invoices.qml'))
dialog.close()
}
@@ -414,7 +414,7 @@ ElDialog {
}
if (!invoice.isSaved) {
// save invoice if newly parsed
invoice.save_invoice()
invoice.saveInvoice()
}
doPay() // only signal here
}
@@ -432,7 +432,7 @@ ElDialog {
if (payImmediately) {
if (invoice.canPay) {
if (!invoice.isSaved) {
invoice.save_invoice()
invoice.saveInvoice()
}
doPay()
}