diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-17 22:00:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-17 22:26:06 +0300 |
commit | ef9e8793c77683b46a99daf6a57ca05facc44752 (patch) | |
tree | f152deaa1614295a3a318efada58b0b81723abaa /src/gui/models | |
parent | 55480eb4477b2cf85af1bcdcc5e8ec4f4ce6682d (diff) | |
download | plus-ef9e8793c77683b46a99daf6a57ca05facc44752.tar.gz plus-ef9e8793c77683b46a99daf6a57ca05facc44752.tar.bz2 plus-ef9e8793c77683b46a99daf6a57ca05facc44752.tar.xz plus-ef9e8793c77683b46a99daf6a57ca05facc44752.zip |
Fix code style.
Diffstat (limited to 'src/gui/models')
-rw-r--r-- | src/gui/models/updatelistmodel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/models/updatelistmodel.h b/src/gui/models/updatelistmodel.h index bddc7c2a2..37d5a8d12 100644 --- a/src/gui/models/updatelistmodel.h +++ b/src/gui/models/updatelistmodel.h @@ -39,7 +39,9 @@ class UpdateListModel final : public ListModel mNames(), mServer(server) { - FOR_EACH(std::vector<HostsGroup>::const_iterator, it, server->updateHosts) + FOR_EACH(std::vector<HostsGroup>::const_iterator, + it, + server->updateHosts) { const HostsGroup &group = *it; mNames.push_back(group.name); |