From: <sea...@us...> - 2006-07-25 17:34:34
|
Revision: 16573 Author: seanegan Date: 2006-07-25 10:34:29 -0700 (Tue, 25 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16573&view=rev Log Message: ----------- Didn't mean to revert that. Modified Paths: -------------- trunk/src/gtkconv.c trunk/src/log.c Modified: trunk/src/gtkconv.c =================================================================== --- trunk/src/gtkconv.c 2006-07-25 17:30:03 UTC (rev 16572) +++ trunk/src/gtkconv.c 2006-07-25 17:34:29 UTC (rev 16573) @@ -6518,7 +6518,13 @@ "GaimGtkWindow *")); gaim_signal_register(handle, "conversation-timestamp", +#if SIZEOF_TIME_T == 4 gaim_marshal_POINTER__POINTER_INT, +#elif SIZEOF_TIME_T == 8 + gaim_marshal_POINTER__POINTER_INT64, +#else +#error Unkown size of time_t +#endif gaim_value_new(GAIM_TYPE_POINTER), 2, gaim_value_new(GAIM_TYPE_SUBTYPE, GAIM_SUBTYPE_LOG), Modified: trunk/src/log.c =================================================================== --- trunk/src/log.c 2006-07-25 17:30:03 UTC (rev 16572) +++ trunk/src/log.c 2006-07-25 17:34:29 UTC (rev 16573) @@ -594,7 +594,13 @@ gaim_log_logger_add(old_logger); gaim_signal_register(handle, "log-timestamp", +#if SIZEOF_TIME_T == 4 gaim_marshal_POINTER__POINTER_INT, +#elif SIZEOF_TIME_T == 8 + gaim_marshal_POINTER__POINTER_INT64, +#else +#error Unknown size of time_t +#endif gaim_value_new(GAIM_TYPE_POINTER), 2, gaim_value_new(GAIM_TYPE_SUBTYPE, GAIM_SUBTYPE_LOG), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |