diff options
| author | Philip Kaufmann <[email protected]> | 2014-06-03 14:42:20 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-06-03 15:01:50 +0200 |
| commit | bbe1925ce3e627fd405d83e3c947e1f430a1d720 (patch) | |
| tree | c90ef9fe03b5f4cbb30ccd23ab42b1c43b26bb1f /src/qt/guiutil.cpp | |
| parent | Merge pull request #4225 (diff) | |
| download | discoin-bbe1925ce3e627fd405d83e3c947e1f430a1d720.tar.xz discoin-bbe1925ce3e627fd405d83e3c947e1f430a1d720.zip | |
[Qt] style police and small addition in rpcconsole
- fix spaces, indentation and coding style glitches
Diffstat (limited to 'src/qt/guiutil.cpp')
| -rw-r--r-- | src/qt/guiutil.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 62db0487f..1922d228c 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -780,7 +780,7 @@ QString formatServicesStr(uint64_t mask) QStringList strList; // Just scan the last 8 bits for now. - for (int i=0; i < 8; i++) { + for (int i = 0; i < 8; i++) { uint64_t check = 1 << i; if (mask & check) { @@ -799,7 +799,6 @@ QString formatServicesStr(uint64_t mask) return strList.join(" & "); else return QObject::tr("None"); - } } // namespace GUIUtil |