comparison 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
comparison
equal deleted inserted replaced
6018:d4caf585f6ff 6019:272c761c52e3
1881 GaimConnection *gc; 1881 GaimConnection *gc;
1882 1882
1883 junk = gtk_text_view_get_text(GTK_TEXT_VIEW(b->text), FALSE); 1883 junk = gtk_text_view_get_text(GTK_TEXT_VIEW(b->text), FALSE);
1884 1884
1885 if (b->account) { 1885 if (b->account) {
1886 gchar *tmp = strdup_withhtml(junk); 1886 gaim_account_set_user_info(b->account, junk);
1887 gaim_account_set_user_info(b->account, tmp);
1888 g_free(tmp);
1889 gc = b->account->gc; 1887 gc = b->account->gc;
1890 1888
1891 if (gc) 1889 if (gc)
1892 serv_set_info(gc, gaim_account_get_user_info(b->account)); 1890 serv_set_info(gc, gaim_account_get_user_info(b->account));
1893 } 1891 }