diff src/protocols/oscar/oscar.c @ 11533:c9b815aeddc1

[gaim-migrate @ 13782] Pushing more of the userinfo stuff to the UI. Also, fixed a notify API warning in the perl plugin. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 12 Sep 2005 20:04:37 +0000
parents 57439a383f4f
children 9b58dadf1c16
line wrap: on
line diff
--- 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;