diff options
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users.cpp b/src/users.cpp index 3bbc0d7fd..0e2ed34f9 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -726,9 +726,9 @@ Anope::string User::GetModes() const return ret; } -ChannelContainer *User::FindChannel(const Channel *c) const +ChanUserContainer *User::FindChannel(const Channel *c) const { - for (UChannelList::const_iterator it = this->chans.begin(), it_end = this->chans.end(); it != it_end; ++it) + for (User::ChanUserList::const_iterator it = this->chans.begin(), it_end = this->chans.end(); it != it_end; ++it) if ((*it)->chan == c) return *it; return NULL; |