src/protocols/oscar/oscar.c

changeset 11533
f58436975d44
parent 11532
b069bbab16be
child 11537
1628dff8c1ea
--- a/src/protocols/oscar/oscar.c	Mon Sep 12 18:52:53 2005 +0000
+++ b/src/protocols/oscar/oscar.c	Mon Sep 12 20:04:37 2005 +0000
@@ -4874,7 +4874,7 @@
 			g_free(statusmsg);
 			g_strfreev(splitmsg);
 
-			gaim_notify_userinfo(gc, who, _("Buddy Information"), NULL, dialogmsg, NULL, NULL);
+			gaim_notify_userinfo(gc, who, dialogmsg, NULL, NULL);
 
 			g_free(title);
 			g_free(dialogmsg);
@@ -5099,7 +5099,7 @@
 
 	tmp = gaim_str_sub_away_formatters(str->str, gaim_account_get_username(account));
 	g_string_free(str, TRUE);
-	gaim_notify_userinfo(gc, userinfo->sn, _("Buddy Information"), NULL, tmp, NULL, NULL);
+	gaim_notify_userinfo(gc, userinfo->sn, tmp, NULL, NULL);
 	g_free(tmp);
 
 	return 1;
@@ -5925,7 +5925,7 @@
 	struct buddyinfo *bi = NULL;
 	gchar who[16];
 	GString *str;
-	gchar *primary, *utf8;
+	gchar *utf8;
 	const gchar *alias;
 	va_list ap;
 	struct aim_icq_info *info;
@@ -6027,9 +6027,7 @@
 		alias = gaim_buddy_get_alias(buddy);
 	else
 		alias = who;
-	primary = g_strdup_printf(_("ICQ Info for %s"), alias);
-	gaim_notify_userinfo(gc, who, primary, NULL, str->str, NULL, NULL);
-	g_free(primary);
+	gaim_notify_userinfo(gc, who, str->str, NULL, NULL);
 	g_string_free(str, TRUE);
 
 	return 1;

mercurial