The log-timestamp and conversation-timestamp signals return a string. I found

Sun, 04 Feb 2007 07:18:02 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Sun, 04 Feb 2007 07:18:02 +0000
changeset 15595
491f14109f90
parent 15594
300c61e1ff2a
child 15596
826d8f843434

The log-timestamp and conversation-timestamp signals return a string. I found
that my local SVN tree had a change from GAIM_TYPE_POINTER to GAIM_TYPE_STRING
for the log-timestamp. I figured I might as well commit that and see what
happens.

libpurple/log.c file | annotate | diff | comparison | revisions
pidgin/gtkconv.c file | annotate | diff | comparison | revisions
--- a/libpurple/log.c	Sun Feb 04 06:46:31 2007 +0000
+++ b/libpurple/log.c	Sun Feb 04 07:18:02 2007 +0000
@@ -638,7 +638,7 @@
 #else
 #error Unknown size of time_t
 #endif
-	                     gaim_value_new(GAIM_TYPE_POINTER), 2,
+	                     gaim_value_new(GAIM_TYPE_STRING), 2,
 	                     gaim_value_new(GAIM_TYPE_SUBTYPE,
 	                                    GAIM_SUBTYPE_LOG),
 #if SIZEOF_TIME_T == 4
--- a/pidgin/gtkconv.c	Sun Feb 04 06:46:31 2007 +0000
+++ b/pidgin/gtkconv.c	Sun Feb 04 07:18:02 2007 +0000
@@ -6807,7 +6807,7 @@
 #else
 #error Unkown size of time_t
 #endif
-	                     gaim_value_new(GAIM_TYPE_POINTER), 3,
+	                     gaim_value_new(GAIM_TYPE_STRING), 3,
 	                     gaim_value_new(GAIM_TYPE_SUBTYPE,
 	                                    GAIM_SUBTYPE_CONVERSATION),
 #if SIZEOF_TIME_T == 4

mercurial