diff src/buddy.c @ 2856:b1e300a85678

[gaim-migrate @ 2869] rewrote the html parser in gtkimhtml. yes, that's really all i did. the reason for the massive change is because i added a length argument, which then needed to be propogated down to everything that would ever receive anything that would get drawn to the window. the new parser isn't any faster. that wasn't my goal. it's much more understandable now (hopefully, anyway). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 08 Dec 2001 09:48:52 +0000
parents 2c39e70dd07c
children c12e3e66d54a
line wrap: on
line diff
--- a/src/buddy.c	Sat Dec 08 08:46:00 2001 +0000
+++ b/src/buddy.c	Sat Dec 08 09:48:52 2001 +0000
@@ -1499,7 +1499,7 @@
 
 					set_convo_gc(c, u->gc);
 
-					write_to_conv(c, b->message, WFLAG_SEND, NULL, time((time_t) NULL));
+					write_to_conv(c, b->message, WFLAG_SEND, NULL, time(NULL), -1);
 					serv_send_im(u->gc, name, b->message, 0);
 				}
 			}
@@ -2110,7 +2110,7 @@
 				if (c) {
 					char tmp[1024];
 					g_snprintf(tmp, sizeof(tmp), _("%s logged in."), b->name);
-					write_to_conv(c, tmp, WFLAG_SYSTEM, NULL, time((time_t) NULL));
+					write_to_conv(c, tmp, WFLAG_SYSTEM, NULL, time(NULL), -1);
 				}
 			}
 			bs->sound = 2;
@@ -2165,7 +2165,7 @@
 			if (c) {
 				char tmp[1024];
 				g_snprintf(tmp, sizeof(tmp), _("%s logged out."), b->name);
-				write_to_conv(c, tmp, WFLAG_SYSTEM, NULL, time((time_t) NULL));
+				write_to_conv(c, tmp, WFLAG_SYSTEM, NULL, time(NULL), -1);
 			}
 		}