From: <the...@us...> - 2006-05-10 12:17:28
|
Revision: 16171 Author: thekingant Date: 2006-05-10 05:17:21 -0700 (Wed, 10 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16171&view=rev Log Message: ----------- Fixes in 10 minutes or less, or your money back. Modified Paths: -------------- trunk/src/log.c Modified: trunk/src/log.c =================================================================== --- trunk/src/log.c 2006-05-10 02:35:09 UTC (rev 16170) +++ trunk/src/log.c 2006-05-10 12:17:21 UTC (rev 16171) @@ -24,6 +24,7 @@ */ #include "account.h" +#include "dbus-maybe.h" #include "debug.h" #include "internal.h" #include "log.h" @@ -80,6 +81,7 @@ /* IMPORTANT: Make sure to initialize all the members of GaimLog */ log = g_slice_new(GaimLog); + GAIM_DBUS_REGISTER_POINTER(log, GaimLog); log->type = type; log->name = g_strdup(gaim_normalize(account, name)); @@ -133,6 +135,7 @@ g_slice_free(struct tm, log->tm); } + GAIM_DBUS_UNREGISTER_POINTER(log); g_slice_free(GaimLog, log); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |