From: <the...@us...> - 2006-12-01 04:40:15
|
Revision: 17863 http://svn.sourceforge.net/gaim/?rev=17863&view=rev Author: thekingant Date: 2006-11-30 20:38:54 -0800 (Thu, 30 Nov 2006) Log Message: ----------- Surely this is what was intended? Get rid of an assertion failure when adding a new account. Modified Paths: -------------- trunk/gtk/gtkaccount.c Modified: trunk/gtk/gtkaccount.c =================================================================== --- trunk/gtk/gtkaccount.c 2006-12-01 04:27:36 UTC (rev 17862) +++ trunk/gtk/gtkaccount.c 2006-12-01 04:38:54 UTC (rev 17863) @@ -1155,7 +1155,7 @@ else if (gaim_prefs_get_string("/gaim/gtk/accounts/buddyicon") && icon_change) { const char *filename = gaim_prefs_get_string("/gaim/gtk/accounts/buddyicon"); - char *icon = gaim_gtk_convert_buddy_icon(dialog->plugin, gaim_prefs_get_string(filename)); + char *icon = gaim_gtk_convert_buddy_icon(dialog->plugin, filename); gaim_account_set_buddy_icon_path(account, filename); gaim_account_set_buddy_icon(account, icon); g_free(icon); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |