changeset 1681:4a129d9f9b4f

[gaim-migrate @ 1691] make the notification smaller. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 03 Apr 2001 01:52:08 +0000
parents b83195b7ab0a
children 4328efeb531e
files src/buddy.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/buddy.c	Mon Apr 02 09:33:52 2001 +0000
+++ b/src/buddy.c	Tue Apr 03 01:52:08 2001 +0000
@@ -1996,7 +1996,7 @@
 				struct conversation *c = find_conversation(b->name);
 				if (c) {
 					char tmp[1024];
-					g_snprintf(tmp, sizeof(tmp), _("<HR><B>%s logged in%s%s.</B><BR><HR>"), b->name,
+					g_snprintf(tmp, sizeof(tmp), _("<B>%s logged in%s%s.</B>"), b->name,
 							((display_options & OPT_DISP_SHOW_TIME) ? " @ " : ""),
 							((display_options & OPT_DISP_SHOW_TIME) ? date() : ""));
 					write_to_conv(c, tmp, WFLAG_SYSTEM, NULL);
@@ -2048,7 +2048,7 @@
 			struct conversation *c = find_conversation(b->name);
 			if (c) {
 				char tmp[1024];
-				g_snprintf(tmp, sizeof(tmp), _("<HR><B>%s logged out%s%s.</B><BR><HR>"), b->name,
+				g_snprintf(tmp, sizeof(tmp), _("<B>%s logged out%s%s.</B>"), b->name,
 						((display_options & OPT_DISP_SHOW_TIME) ? " @ " : ""),
 						((display_options & OPT_DISP_SHOW_TIME) ? date() : ""));
 				write_to_conv(c, tmp, WFLAG_SYSTEM, NULL);