Hide addresses in transaction overview by default, they can be re-shown as a configuration option

This commit is contained in:
Wladimir J. van der Laan
2011-07-30 17:42:02 +02:00
parent 1aafe34a08
commit 2f5d380943
6 changed files with 67 additions and 19 deletions

View File

@@ -27,6 +27,7 @@ public:
ProxyPort, // QString
Fee, // qint64
DisplayUnit, // BitcoinUnits::Unit
DisplayAddresses, // bool
OptionIDRowCount
};
@@ -39,10 +40,12 @@ public:
bool getMinimizeToTray();
bool getMinimizeOnClose();
int getDisplayUnit();
bool getDisplayAddresses();
private:
// Wallet stores persistent options
CWallet *wallet;
int nDisplayUnit;
bool bDisplayAddresses;
signals:
void displayUnitChanged(int unit);