diff options
| author | Pieter Wuille <[email protected]> | 2012-04-17 23:27:59 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-04-17 23:27:59 +0200 |
| commit | 559fc3c6107243a005138c05a69b8be491dc8066 (patch) | |
| tree | 81bfd7a6fd4662e4410194b4812571fdb779a781 /src/qt/optionsmodel.cpp | |
| parent | Merge pull request #1114 from sipa/lesssync (diff) | |
| download | discoin-559fc3c6107243a005138c05a69b8be491dc8066.tar.xz discoin-559fc3c6107243a005138c05a69b8be491dc8066.zip | |
Add missing breaks in optionmodel's switch case
Diffstat (limited to 'src/qt/optionsmodel.cpp')
| -rw-r--r-- | src/qt/optionsmodel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index f7d9b0da2..2210c4dd7 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -198,10 +198,12 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in settings.setValue("nDisplayUnit", nDisplayUnit); emit displayUnitChanged(unit); } + break; case DisplayAddresses: { bDisplayAddresses = value.toBool(); settings.setValue("bDisplayAddresses", bDisplayAddresses); } + break; default: break; } |