[Qt] style police and small addition in rpcconsole

- fix spaces, indentation and coding style glitches
This commit is contained in:
Philip Kaufmann
2014-06-03 14:42:20 +02:00
parent 4c097f9669
commit bbe1925ce3
10 changed files with 27 additions and 22 deletions

View File

@@ -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