diff options
| author | Matt Corallo <[email protected]> | 2011-06-29 01:08:48 +0200 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2011-07-13 02:11:25 +0200 |
| commit | 81598083e7c822964815bdb1e26d6c62760e52b8 (patch) | |
| tree | 3b2beb6045bdaa4563c351e397214829dde3e3bf /src/uibase.cpp | |
| parent | Push unlocked_until in getinfo. (diff) | |
| download | discoin-81598083e7c822964815bdb1e26d6c62760e52b8.tar.xz discoin-81598083e7c822964815bdb1e26d6c62760e52b8.zip | |
Dynamically remove/insert the Options for encryption in the menus.
Diffstat (limited to 'src/uibase.cpp')
| -rw-r--r-- | src/uibase.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/uibase.cpp b/src/uibase.cpp index 9ac4ec8e6..18eec4413 100644 --- a/src/uibase.cpp +++ b/src/uibase.cpp @@ -32,11 +32,9 @@ CMainFrameBase::CMainFrameBase( wxWindow* parent, wxWindowID id, const wxString& m_menuOptionsChangeYourAddress = new wxMenuItem( m_menuOptions, wxID_ANY, wxString( _("&Your Receiving Addresses...") ) , wxEmptyString, wxITEM_NORMAL ); m_menuOptions->Append( m_menuOptionsChangeYourAddress ); - wxMenuItem* m_menuOptionsEncryptWallet; m_menuOptionsEncryptWallet = new wxMenuItem( m_menuOptions, wxID_ANY, wxString( _("&Encrypt Wallet...") ) , wxEmptyString, wxITEM_NORMAL ); m_menuOptions->Append( m_menuOptionsEncryptWallet ); - wxMenuItem* m_menuOptionsChangeWalletPassphrase; m_menuOptionsChangeWalletPassphrase = new wxMenuItem( m_menuOptions, wxID_ANY, wxString( _("&Change Wallet Encryption Passphrase...") ) , wxEmptyString, wxITEM_NORMAL ); m_menuOptions->Append( m_menuOptionsChangeWalletPassphrase ); |