changeset 8755:d0364feabf96

[gaim-migrate @ 9510] Fix an odd issue that SimGuy noticed. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 22 Apr 2004 04:57:33 +0000
parents 9b0092f2d1d9
children 67f733c1cff8
files src/gtkconv.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);