diff options
Diffstat (limited to 'protocols/IRCG/src/stdafx.h')
-rw-r--r-- | protocols/IRCG/src/stdafx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/stdafx.h b/protocols/IRCG/src/stdafx.h index 26b290438b..d690634e4f 100644 --- a/protocols/IRCG/src/stdafx.h +++ b/protocols/IRCG/src/stdafx.h @@ -183,7 +183,7 @@ using namespace irc; // map actual member functions to their associated IRC command.
// put any number of this macro in the class's constructor.
#define IRC_MAP_ENTRY(name, member) \
- m_handlers.insert( new CIrcHandler( L##name, &CIrcProto::OnIrc_##member ));
+ m_handlers.insert( new CIrcHandler( L##name, &CIrcProto::##member ));
/////////////////////////////////////////////////////////////////////////////////////////
// Functions
|