# HG changeset patch # User Sean Egan # Date 1176538791 0 # Node ID 5311fcd9fbfb49c9f58263b2ac80cb9d2931f2d1 # Parent 8e0a9b2f5a2eaa077ad3af5861ace25f1f6d6a16 The things that C will allow to compile astound me. Removes an errant apostrophe. diff -r 8e0a9b2f5a2e -r 5311fcd9fbfb pidgin/gtkblist.c --- a/pidgin/gtkblist.c Sat Apr 14 07:23:05 2007 +0000 +++ b/pidgin/gtkblist.c Sat Apr 14 08:19:51 2007 +0000 @@ -2592,7 +2592,7 @@ gtkblist->tooltipdata = g_list_append(gtkblist->tooltipdata, td); w = TOOLTIP_BORDER + STATUS_SIZE + SMALL_SPACE + MAX(td->width, td->name_width) + SMALL_SPACE + td->avatar_width + TOOLTIP_BORDER; - h = TOOLTIP_BORDER + MAX(td->height + td->name_height, MAX(STATUS_SIZE, td->avatar_height)); + h = TOOLTIP_BORDER + MAX(td->height + td->name_height, MAX(STATUS_SIZE, td->avatar_height)) + TOOLTIP_BORDER; } else if(PURPLE_BLIST_NODE_IS_CONTACT(node)) { PurpleBlistNode *child;