From 33df390bfff01ca58551f24096cdd70034052d98 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 8 Mar 2006 23:26:30 +0000 Subject: [PATCH] Removed deprecated Server::IsOnChannel (was a C++-ish wrapper to the C-ish has_channel, no longer needed) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3562 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/modules.h | 5 ----- src/cmd_topic.cpp | 2 +- src/modules.cpp | 5 ----- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/include/modules.h b/include/modules.h index 5b5b177a4..7bc4d3d4c 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1416,11 +1416,6 @@ class Server : public classbase */ virtual std::string ChanMode(userrec* User, chanrec* Chan); - /** Checks if a user is on a channel. - * This function will return true or false to indicate if user 'User' is on channel 'Chan'. - */ - virtual bool IsOnChannel(userrec* User, chanrec* Chan); - /** Returns the server name of the server where the module is loaded. */ virtual std::string GetServerName(); diff --git a/src/cmd_topic.cpp b/src/cmd_topic.cpp index 9de8637b4..463184de7 100644 --- a/src/cmd_topic.cpp +++ b/src/cmd_topic.cpp @@ -98,7 +98,7 @@ void cmd_topic::Handle (char **parameters, int pcnt, userrec *user) { if (IS_LOCAL(user)) { - if ((Ptr) && (!has_channel(user,Ptr))) + if (!Ptr->HasUser(user)) { WriteServ(user->fd,"442 %s %s :You're not on that channel!",user->nick, Ptr->name); return; diff --git a/src/modules.cpp b/src/modules.cpp index d7525a519..f5129c837 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -631,11 +631,6 @@ std::string Server::ChanMode(userrec* User, chanrec* Chan) return cmode(User,Chan); } -bool Server::IsOnChannel(userrec* User, chanrec* Chan) -{ - return has_channel(User,Chan); -} - std::string Server::GetServerName() { return Config->ServerName; -- 2.39.5