summaryrefslogtreecommitdiff
path: root/src/modules/m_customtitle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_customtitle.cpp')
-rw-r--r--src/modules/m_customtitle.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_customtitle.cpp b/src/modules/m_customtitle.cpp
index bd165034f..da28ea8af 100644
--- a/src/modules/m_customtitle.cpp
+++ b/src/modules/m_customtitle.cpp
@@ -18,11 +18,11 @@
/** Handle /TITLE
*/
-class cmd_title : public Command
+class CommandTitle : public Command
{
public:
- cmd_title (InspIRCd* Instance) : Command(Instance,"TITLE",0,2)
+ CommandTitle (InspIRCd* Instance) : Command(Instance,"TITLE",0,2)
{
this->source = "m_customtitle.so";
syntax = "<user> <password>";
@@ -110,13 +110,13 @@ bool OneOfMatches(const char* host, const char* ip, const char* hostlist)
class ModuleCustomTitle : public Module
{
- cmd_title* mycommand;
+ CommandTitle* mycommand;
public:
ModuleCustomTitle(InspIRCd* Me) : Module(Me)
{
- mycommand = new cmd_title(ServerInstance);
+ mycommand = new CommandTitle(ServerInstance);
ServerInstance->AddCommand(mycommand);
}