diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-19 15:25:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-20 17:05:57 +0300 |
commit | 48071e171de41a23197c7328ba038331a936e0eb (patch) | |
tree | 73c7ef1da8e5dd76469d75c0336d88c3371e4263 /src/channelmanager.cpp | |
parent | d07fba228b5251862ad670e1d4f079c9456fab4b (diff) | |
download | plus-48071e171de41a23197c7328ba038331a936e0eb.tar.gz plus-48071e171de41a23197c7328ba038331a936e0eb.tar.bz2 plus-48071e171de41a23197c7328ba038331a936e0eb.tar.xz plus-48071e171de41a23197c7328ba038331a936e0eb.zip |
Replace for to FOR_EACH in some classes.
Diffstat (limited to 'src/channelmanager.cpp')
-rw-r--r-- | src/channelmanager.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/channelmanager.cpp b/src/channelmanager.cpp index 31f87010e..48590891b 100644 --- a/src/channelmanager.cpp +++ b/src/channelmanager.cpp @@ -41,10 +41,7 @@ ChannelManager::~ChannelManager() Channel *ChannelManager::findById(const int id) const { Channel *channel = nullptr; - for (std::list<Channel*>::const_iterator itr = mChannels.begin(), - end = mChannels.end(); - itr != end; - ++itr) + FOR_EACH (std::list<Channel*>::const_iterator, itr, mChannels) { Channel *const c = (*itr); if (!c) @@ -63,10 +60,7 @@ Channel *ChannelManager::findByName(const std::string &name) const Channel *channel = nullptr; if (!name.empty()) { - for (std::list<Channel*>::const_iterator itr = mChannels.begin(), - end = mChannels.end(); - itr != end; - ++itr) + FOR_EACH (std::list<Channel*>::const_iterator, itr, mChannels) { Channel *const c = (*itr); if (!c) |