From: <l4m...@us...> - 2007-08-12 06:20:16
|
Revision: 235 http://libirc.svn.sourceforge.net/libirc/?rev=235&view=rev Author: l4m3rthanyou Date: 2007-08-11 23:20:10 -0700 (Sat, 11 Aug 2007) Log Message: ----------- eUnknown -> eUnknownCommand. eUnknown clashes with cURL. Modified Paths: -------------- trunk/libirc/include/libIRC.h trunk/libirc/src/libIRC.cpp Modified: trunk/libirc/include/libIRC.h =================================================================== --- trunk/libirc/include/libIRC.h 2007-07-31 09:07:21 UTC (rev 234) +++ trunk/libirc/include/libIRC.h 2007-08-12 06:20:10 UTC (rev 235) @@ -47,7 +47,7 @@ // the types of command info structures typedef enum { - eUnknown = 0, + eUnknownCommand = 0, eIRCCommand, eCTCPCommand, eDDECommand Modified: trunk/libirc/src/libIRC.cpp =================================================================== --- trunk/libirc/src/libIRC.cpp 2007-07-31 09:07:21 UTC (rev 234) +++ trunk/libirc/src/libIRC.cpp 2007-08-12 06:20:10 UTC (rev 235) @@ -78,7 +78,7 @@ BaseIRCCommandInfo::BaseIRCCommandInfo() { - type = eUnknown; + type = eUnknownCommand; command = "NULL"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |