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

@@ -420,7 +420,7 @@ ApplicationWindow
newww.walletCreated.connect(function() {
Daemon.availableWallets.reload()
// and load the new wallet
Daemon.load_wallet(newww.path, newww.wizard_data['password'])
Daemon.loadWallet(newww.path, newww.wizard_data['password'])
})
newww.open()
})
@@ -428,13 +428,13 @@ ApplicationWindow
} else {
Daemon.startNetwork()
if (Daemon.availableWallets.rowCount() > 0) {
Daemon.load_wallet()
Daemon.loadWallet()
} else {
var newww = app.newWalletWizard.createObject(app)
newww.walletCreated.connect(function() {
Daemon.availableWallets.reload()
// and load the new wallet
Daemon.load_wallet(newww.path, newww.wizard_data['password'])
Daemon.loadWallet(newww.path, newww.wizard_data['password'])
})
newww.open()
}