From: <bla...@us...> - 2008-02-07 03:56:16
|
Revision: 370 http://libirc.svn.sourceforge.net/libirc/?rev=370&view=rev Author: blast007 Date: 2008-02-06 19:56:05 -0800 (Wed, 06 Feb 2008) Log Message: ----------- s/CTMP/CTCP/ Modified Paths: -------------- trunk/libirc/include/IRCClient.h trunk/libirc/src/IRCClient.cpp Modified: trunk/libirc/include/IRCClient.h =================================================================== --- trunk/libirc/include/IRCClient.h 2008-02-06 21:20:57 UTC (rev 369) +++ trunk/libirc/include/IRCClient.h 2008-02-07 03:56:05 UTC (rev 370) @@ -181,11 +181,11 @@ // command sending and receving methods called by handlers virtual bool sendCommand ( std::string &commandName, BaseIRCCommandInfo &info ); virtual bool sendIRCCommand ( teIRCCommands command, IRCCommandInfo &info ); - virtual bool sendCTMPCommand ( teCTCPCommands command, CTCPCommandInfo &info ); + virtual bool sendCTCPCommand ( teCTCPCommands command, CTCPCommandInfo &info ); virtual bool receiveCommand ( const std::string &commandName, BaseIRCCommandInfo &info ); virtual bool receiveIRCCommand ( teIRCCommands command, IRCCommandInfo &info ); - virtual bool receiveCTMPCommand ( teCTCPCommands command, CTCPCommandInfo &info ); + virtual bool receiveCTCPCommand ( teCTCPCommands command, CTCPCommandInfo &info ); // -------------------------------------------------------------------------------------- // generaly not called by the client app Modified: trunk/libirc/src/IRCClient.cpp =================================================================== --- trunk/libirc/src/IRCClient.cpp 2008-02-06 21:20:57 UTC (rev 369) +++ trunk/libirc/src/IRCClient.cpp 2008-02-07 03:56:05 UTC (rev 370) @@ -410,7 +410,7 @@ return sendCommand(info.command,info); } -bool IRCClient::sendCTMPCommand ( teCTCPCommands command, CTCPCommandInfo &info ) +bool IRCClient::sendCTCPCommand ( teCTCPCommands command, CTCPCommandInfo &info ) { info.type = eCTCPCommand; info.ctcpCommand = command; @@ -460,7 +460,7 @@ return receiveCommand(info.command,info); } -bool IRCClient::receiveCTMPCommand ( teCTCPCommands command, CTCPCommandInfo &info ) +bool IRCClient::receiveCTCPCommand ( teCTCPCommands command, CTCPCommandInfo &info ) { info.type = eCTCPCommand; info.ctcpCommand = command; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |