diff options
author | Jon Atack <jon@atack.com> | 2019-09-07 11:08:28 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2019-09-09 10:56:38 +0200 |
commit | 43aa9b0d790840e30c1cd128e67946ffcbfeb721 (patch) | |
tree | bebebb3c349afa7a5cbfbf09c77e2c8012ae0508 /src/qt/createwalletdialog.h | |
parent | 4c329d43a5f99bc38e533e34393c2cc72800368a (diff) |
gui: rename encrypt(), blank(), and askPasshprase()
as well as disablePrivateKeys() to be consistent in naming.
Diffstat (limited to 'src/qt/createwalletdialog.h')
-rw-r--r-- | src/qt/createwalletdialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/createwalletdialog.h b/src/qt/createwalletdialog.h index a1365b5969..30766107b9 100644 --- a/src/qt/createwalletdialog.h +++ b/src/qt/createwalletdialog.h @@ -24,9 +24,9 @@ public: virtual ~CreateWalletDialog(); QString walletName() const; - bool encrypt() const; - bool disablePrivateKeys() const; - bool blank() const; + bool isEncryptWalletChecked() const; + bool isDisablePrivateKeysChecked() const; + bool isMakeBlankWalletChecked() const; private: Ui::CreateWalletDialog *ui; |