# HG changeset patch # User Christian Hammond # Date 1082609853 0 # Node ID d0364feabf9604c863b87c955895875faafd3566 # Parent 9b0092f2d1d91e942170d0b8ae1011794b9512b8 [gaim-migrate @ 9510] Fix an odd issue that SimGuy noticed. committer: Tailor Script diff -r 9b0092f2d1d9 -r d0364feabf96 src/gtkconv.c --- a/src/gtkconv.c Thu Apr 22 04:55:24 2004 +0000 +++ b/src/gtkconv.c Thu Apr 22 04:57:33 2004 +0000 @@ -1995,7 +1995,7 @@ * A bunch of buddy icon functions **************************************************************************/ static GdkPixbuf * -get_tab_icon(GaimConversation *conv, gboolean small) +get_tab_icon(GaimConversation *conv, gboolean small_icon) { GaimAccount *account = gaim_conversation_get_account(conv); const char *name = gaim_conversation_get_name(conv); @@ -2005,7 +2005,7 @@ GaimBuddy *b = gaim_find_buddy(account, name); if (b != NULL) { status = gaim_gtk_blist_get_status_icon((GaimBlistNode*)b, - (small ? GAIM_STATUS_ICON_SMALL : GAIM_STATUS_ICON_LARGE)); + (small_icon ? GAIM_STATUS_ICON_SMALL : GAIM_STATUS_ICON_LARGE)); } } @@ -2013,7 +2013,7 @@ GdkPixbuf *pixbuf; pixbuf = create_prpl_icon(account); - if (small && pixbuf != NULL) + if (small_icon && pixbuf != NULL) { status = gdk_pixbuf_scale_simple(pixbuf, 15, 15, GDK_INTERP_BILINEAR);