diff src/dialogs.c @ 6019:272c761c52e3

[gaim-migrate @ 6469] So Decklin sent me a patch to fix the problem with setting profiles, and then later that day, before I got a shot at it, KingAnt fixed it himself. But Decklin's fix is better, so here it is, hand-merged with love. KingAnt also points out that Decklin Foster is a cool name. Decklin also realized (and fixed) that we were initializing static protocols after importing prefs, causing the import to fail. Thanks, Decklin. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 05 Jul 2003 01:49:07 +0000
parents 80e5258226f3
children d2d5d1984b09
line wrap: on
line diff
--- a/src/dialogs.c	Fri Jul 04 21:29:55 2003 +0000
+++ b/src/dialogs.c	Sat Jul 05 01:49:07 2003 +0000
@@ -1883,9 +1883,7 @@
 	junk = gtk_text_view_get_text(GTK_TEXT_VIEW(b->text), FALSE);
 
 	if (b->account) {
-		gchar *tmp = strdup_withhtml(junk);
-		gaim_account_set_user_info(b->account, tmp);
-		g_free(tmp);
+		gaim_account_set_user_info(b->account, junk);
 		gc = b->account->gc;
 
 		if (gc)