Revision: 16303
Author: deryni9
Date: 2006-06-21 08:14:26 -0700 (Wed, 21 Jun 2006)
ViewCVS: http://svn.sourceforge.net/gaim/?rev=16303&view=rev
Log Message:
-----------
08:50:00 <+Paco-Paco> deryni: instead of Tcl_NewIntObj((int)conv), you should
use gaim_tcl_ref_new(GaimTclRefConversation, conv)
Done and done.
Next up, error messages (later).
Modified Paths:
--------------
trunk/plugins/tcl/tcl_cmd.c
Modified: trunk/plugins/tcl/tcl_cmd.c
===================================================================
--- trunk/plugins/tcl/tcl_cmd.c 2006-06-21 13:51:19 UTC (rev 16302)
+++ trunk/plugins/tcl/tcl_cmd.c 2006-06-21 15:14:26 UTC (rev 16303)
@@ -137,7 +137,7 @@
Tcl_ListObjAppendElement(handler->interp, command, arg);
/* The conversation */
- arg = Tcl_NewIntObj((int)conv);
+ arg = gaim_tcl_ref_new(GaimTclRefConversation, conv);
Tcl_ListObjAppendElement(handler->interp, command, arg);
/* The command */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|