From b669f920eaa9fb795d0a103d724943898a0df4b2 Mon Sep 17 00:00:00 2001 From: w00t Date: Sun, 21 Oct 2007 21:43:48 +0000 Subject: Another big commit, just to please all my fans out there.. cmd_* -> Command*. Muahaha. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8290 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_chgident.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/modules/m_chgident.cpp') diff --git a/src/modules/m_chgident.cpp b/src/modules/m_chgident.cpp index 7ae98b37d..42a4ef747 100644 --- a/src/modules/m_chgident.cpp +++ b/src/modules/m_chgident.cpp @@ -17,10 +17,10 @@ /** Handle /CHGIDENT */ -class cmd_chgident : public Command +class CommandChgident : public Command { public: - cmd_chgident (InspIRCd* Instance) : Command(Instance,"CHGIDENT", 'o', 2) + CommandChgident (InspIRCd* Instance) : Command(Instance,"CHGIDENT", 'o', 2) { this->source = "m_chgident.so"; syntax = " "; @@ -68,13 +68,13 @@ class cmd_chgident : public Command class ModuleChgIdent : public Module { - cmd_chgident* mycommand; + CommandChgident* mycommand; public: ModuleChgIdent(InspIRCd* Me) : Module(Me) { - mycommand = new cmd_chgident(ServerInstance); + mycommand = new CommandChgident(ServerInstance); ServerInstance->AddCommand(mycommand); } -- cgit v1.2.3