diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-16 17:37:31 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-18 08:16:12 +0100 |
commit | 0689f46cc7f0939c0b52560954a3a210cbad053a (patch) | |
tree | 30573c57db7f03d72c8a475f6cff4c6fd0e163cf /src/qt/optionsmodel.h | |
parent | af6e093f062548d850b6eb510240aeb1ff24e2a3 (diff) |
Coincontrol cleanup (e.g. add missing license)
- add missing license headers
- make compatible with Qt5
- enforce header cleanup style
- small code style cleanups
- rename Coin Control dialog into Coin Control Address Selection
- use default font for the windows labels (no monospace)
Diffstat (limited to 'src/qt/optionsmodel.h')
-rw-r--r-- | src/qt/optionsmodel.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index c716f74c0b..5bb563cc36 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -21,19 +21,19 @@ public: explicit OptionsModel(QObject *parent = 0); enum OptionID { - StartAtStartup, // bool - MinimizeToTray, // bool - MapPortUPnP, // bool - MinimizeOnClose, // bool - ProxyUse, // bool - ProxyIP, // QString - ProxyPort, // int - ProxySocksVersion, // int - Fee, // qint64 - DisplayUnit, // BitcoinUnits::Unit - DisplayAddresses, // bool - Language, // QString - CoinControlFeatures, // bool + StartAtStartup, // bool + MinimizeToTray, // bool + MapPortUPnP, // bool + MinimizeOnClose, // bool + ProxyUse, // bool + ProxyIP, // QString + ProxyPort, // int + ProxySocksVersion, // int + Fee, // qint64 + DisplayUnit, // BitcoinUnits::Unit + DisplayAddresses, // bool + Language, // QString + CoinControlFeatures, // bool OptionIDRowCount, }; @@ -55,7 +55,7 @@ public: bool getDisplayAddresses() { return bDisplayAddresses; } QString getLanguage() { return language; } bool getProxySettings(QString& proxyIP, quint16 &proxyPort) const; - bool getCoinControlFeatures(); + bool getCoinControlFeatures() { return fCoinControlFeatures; } private: int nDisplayUnit; |