diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-26 13:08:34 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-26 13:08:34 +0200 |
| commit | 587e52855a4c6c4f672ecec28ab9a029d4e4f850 (patch) | |
| tree | b8fb9c4bf66d6af8643a779f142df2ccceb90950 /src/qt/optionsmodel.h | |
| parent | Negative transaction color changed to red (was grey due to mistake) (diff) | |
| download | discoin-587e52855a4c6c4f672ecec28ab9a029d4e4f850.tar.xz discoin-587e52855a4c6c4f672ecec28ab9a029d4e4f850.zip | |
allow multiple units in bitcoin amount widget (for example, for sending) using a combobox
Diffstat (limited to 'src/qt/optionsmodel.h')
| -rw-r--r-- | src/qt/optionsmodel.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index bdb797a2d..4ba44dc23 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -18,14 +18,14 @@ public: explicit OptionsModel(CWallet *wallet, QObject *parent = 0); enum OptionID { - StartAtStartup, - MinimizeToTray, - MapPortUPnP, - MinimizeOnClose, - ConnectSOCKS4, - ProxyIP, - ProxyPort, - Fee, + StartAtStartup, // bool + MinimizeToTray, // bool + MapPortUPnP, // bool + MinimizeOnClose, // bool + ConnectSOCKS4, // bool + ProxyIP, // QString + ProxyPort, // QString + Fee, // qint64 OptionIDRowCount }; |