From: <de...@us...> - 2006-06-21 16:05:29
|
Revision: 16304 Author: deryni9 Date: 2006-06-21 08:19:28 -0700 (Wed, 21 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16304&view=rev Log Message: ----------- See, and this is why I had Ethan look this over. Having signal and command callbacks conflict with each other would be bad. Modified Paths: -------------- trunk/plugins/tcl/tcl_cmd.c Modified: trunk/plugins/tcl/tcl_cmd.c =================================================================== --- trunk/plugins/tcl/tcl_cmd.c 2006-06-21 15:14:26 UTC (rev 16303) +++ trunk/plugins/tcl/tcl_cmd.c 2006-06-21 15:19:28 UTC (rev 16304) @@ -184,6 +184,7 @@ char name[32]; static int cbnum; - g_snprintf(name, sizeof(name), "::gaim::_callback::cb_%d", cbnum++); + g_snprintf(name, sizeof(name), "::gaim::_cmd_callback::cb_%d", + cbnum++); return Tcl_NewStringObj(name, -1); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |