From 03e0fb206d3f5709868f03bc7a401cb666c38ffb Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 15 Oct 2007 21:03:30 +0000 Subject: InspTimer -> Timer git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8205 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/commands/cmd_whowas.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/commands') diff --git a/include/commands/cmd_whowas.h b/include/commands/cmd_whowas.h index c8f367116..ca411de07 100644 --- a/include/commands/cmd_whowas.h +++ b/include/commands/cmd_whowas.h @@ -35,7 +35,7 @@ class WhoWasMaintainTimer; /* Forward ref for typedefs */ class WhoWasGroup; -/** InspTimer that is used to maintain the whowas list, called once an hour +/** Timer that is used to maintain the whowas list, called once an hour */ extern WhoWasMaintainTimer* timer; @@ -127,13 +127,13 @@ class WhoWasGroup : public classbase ~WhoWasGroup(); }; -class WhoWasMaintainTimer : public InspTimer +class WhoWasMaintainTimer : public Timer { private: InspIRCd* ServerInstance; public: WhoWasMaintainTimer(InspIRCd* Instance, long interval) - : InspTimer(interval, Instance->Time(), true), ServerInstance(Instance) + : Timer(interval, Instance->Time(), true), ServerInstance(Instance) { } virtual void Tick(time_t TIME); -- cgit v1.2.3