aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.h
diff options
context:
space:
mode:
authorsje397 <[email protected]>2012-02-14 23:14:43 +1100
committersje397 <[email protected]>2012-02-15 23:29:59 +1100
commit4efbda3f257bd8e635715377d85862d322c57c4b (patch)
treeb968cfa7ffcded317da62e8792ff1aa3dacb2c88 /src/qt/walletmodel.h
parentMerge pull request #807 from TheBlueMatt/bip21 (diff)
downloaddiscoin-4efbda3f257bd8e635715377d85862d322c57c4b.tar.xz
discoin-4efbda3f257bd8e635715377d85862d322c57c4b.zip
Added 'Backup Wallet' menu option
- icon from the LGPL Nuvola set (like the tick) - http://www.icon-king.com/projects/nuvola/ - include 'boost/version.hpp' in db.cpp so that the overwrite version of copy can be used - catch exceptions in BackupWallet (e.g. filesystem_error thrown when trying to overwrite without the overwrite flag set) - include db.h in walletmodel.cpp for BackupWallet function - updated doc/assets-attribution.txt and contrib/debian/copyright with copyright info for new icon
Diffstat (limited to 'src/qt/walletmodel.h')
-rw-r--r--src/qt/walletmodel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h
index 89e8cdd2a..4123240e9 100644
--- a/src/qt/walletmodel.h
+++ b/src/qt/walletmodel.h
@@ -77,6 +77,8 @@ public:
// Passphrase only needed when unlocking
bool setWalletLocked(bool locked, const SecureString &passPhrase=SecureString());
bool changePassphrase(const SecureString &oldPass, const SecureString &newPass);
+ // Wallet backup
+ bool backupWallet(const QString &filename);
// RAI object for unlocking wallet, returned by requestUnlock()
class UnlockContext