diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-15 20:55:55 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-15 20:55:55 +0000 |
commit | 694e307c09334c21aaf1a6c3f0b7b6d95440dd3e (patch) | |
tree | 2384cd066b58a46ba209595f597208faaf6c3521 /src/cmd_whowas.cpp | |
parent | 802cbffcb7816de7e4071b300966d868a14dc922 (diff) |
class command_t -> class Command. Whey :D
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8203 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_whowas.cpp')
-rw-r--r-- | src/cmd_whowas.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmd_whowas.cpp b/src/cmd_whowas.cpp index 1531f6239..f982d4873 100644 --- a/src/cmd_whowas.cpp +++ b/src/cmd_whowas.cpp @@ -16,13 +16,13 @@ WhoWasMaintainTimer * timer; -extern "C" DllExport command_t* init_command(InspIRCd* Instance) +extern "C" DllExport Command* init_command(InspIRCd* Instance) { return new cmd_whowas(Instance); } cmd_whowas::cmd_whowas(InspIRCd* Instance) -: command_t(Instance, "WHOWAS", 0, 1) +: Command(Instance, "WHOWAS", 0, 1) { syntax = "<nick>{,<nick>}"; timer = new WhoWasMaintainTimer(Instance, 3600); @@ -340,7 +340,7 @@ WhoWasGroup::~WhoWasGroup() /* every hour, run this function which removes all entries older than Config->WhoWasMaxKeep */ void WhoWasMaintainTimer::Tick(time_t t) { - command_t* whowas_command = ServerInstance->Parser->GetHandler("WHOWAS"); + Command* whowas_command = ServerInstance->Parser->GetHandler("WHOWAS"); if (whowas_command) { std::deque<classbase*> params; |