From: <Jef...@us...> - 2007-11-28 18:19:23
|
Revision: 348 http://libirc.svn.sourceforge.net/libirc/?rev=348&view=rev Author: JeffM2501 Date: 2007-11-28 10:19:21 -0800 (Wed, 28 Nov 2007) Log Message: ----------- Info not INfo Modified Paths: -------------- trunk/libirc/include/IRCClient.h trunk/libirc/include/libIRC.h trunk/libirc/src/IRCClient.cpp Modified: trunk/libirc/include/IRCClient.h =================================================================== --- trunk/libirc/include/IRCClient.h 2007-11-20 05:40:00 UTC (rev 347) +++ trunk/libirc/include/IRCClient.h 2007-11-28 18:19:21 UTC (rev 348) @@ -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 sendCTMPCommand ( 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 receiveCTMPCommand ( teCTCPCommands command, CTCPCommandInfo &info ); // -------------------------------------------------------------------------------------- // generaly not called by the client app Modified: trunk/libirc/include/libIRC.h =================================================================== --- trunk/libirc/include/libIRC.h 2007-11-20 05:40:00 UTC (rev 347) +++ trunk/libirc/include/libIRC.h 2007-11-28 18:19:21 UTC (rev 348) @@ -96,7 +96,7 @@ /** * a Client To Client Protocol command */ -class CTCPCommandINfo : public BaseIRCCommandInfo +class CTCPCommandInfo : public BaseIRCCommandInfo { public: teCTCPCommands ctcpCommand; @@ -108,7 +108,7 @@ /** * a Direct Client Connect command */ -class DCCCommandINfo : public BaseIRCCommandInfo +class DCCCommandInfo : public BaseIRCCommandInfo { std::string from; std::string to; Modified: trunk/libirc/src/IRCClient.cpp =================================================================== --- trunk/libirc/src/IRCClient.cpp 2007-11-20 05:40:00 UTC (rev 347) +++ trunk/libirc/src/IRCClient.cpp 2007-11-28 18:19:21 UTC (rev 348) @@ -410,7 +410,7 @@ return sendCommand(info.command,info); } -bool IRCClient::sendCTMPCommand ( teCTCPCommands command, CTCPCommandINfo &info ) +bool IRCClient::sendCTMPCommand ( 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::receiveCTMPCommand ( 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. |