diff options
| author | Patrick Strateman <[email protected]> | 2016-05-16 17:31:16 -0700 |
|---|---|---|
| committer | Patrick Strateman <[email protected]> | 2016-05-16 17:48:25 -0700 |
| commit | 380498aba4f6aebe53a8241f163e3c7fe424b7e0 (patch) | |
| tree | c191b564f4bcb915de931d85f661e64045cc65e6 /src/qt/walletmodel.cpp | |
| parent | Move GetAccountBalance from rpcwallet.cpp into CWallet::GetAccountBalance (diff) | |
| download | discoin-380498aba4f6aebe53a8241f163e3c7fe424b7e0.tar.xz discoin-380498aba4f6aebe53a8241f163e3c7fe424b7e0.zip | |
Move BackupWallet to CWallet::BackupWallet
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index a0d0e7044..3867310cd 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -447,7 +447,7 @@ bool WalletModel::changePassphrase(const SecureString &oldPass, const SecureStri bool WalletModel::backupWallet(const QString &filename) { - return BackupWallet(*wallet, filename.toLocal8Bit().data()); + return wallet->BackupWallet(filename.toLocal8Bit().data()); } // Handlers for core signals |