Mercurial > pidgin
diff src/buddy.c @ 3159:fce1883cc608
[gaim-migrate @ 3175]
new shortcuts:
Ctrl-- Decrease Font Size
Ctrl-= Increase Font Size
Ctrl-0 Normal Font Size
Ctrl-F Select Font
Ctrl-C Text Color
Ctrl-W Close IM/Chat Window (or Tab, if using tabbed conversations)
Ctrl-N New IM/Chat Tab (if using tabbed conversations)
Ctrl-Z Minimize (Iconify) IM/Chat Window
-As suggested by Shreedeep K Bhachech
committer: Tailor Script <tailor@pidgin.im>
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Sat, 20 Apr 2002 08:10:13 +0000 |
| parents | a0a0b00f214b |
| children | 49fb2b634a2a |
line wrap: on
line diff
--- a/src/buddy.c Sat Apr 20 07:07:06 2002 +0000 +++ b/src/buddy.c Sat Apr 20 08:10:13 2002 +0000 @@ -33,6 +33,7 @@ #include <string.h> #include <stdio.h> #include <stdlib.h> +#include <ctype.h> #include <math.h> #include <time.h> #include <unistd.h> @@ -1194,7 +1195,7 @@ style = gtk_widget_get_style( widget ); - if (gc->prpl->list_icon) + if (gc->prpl->list_icon) { if (gc->prpl->protocol == PROTO_OSCAR) { if (isdigit(*gc->username)) { xpm = gc->prpl->list_icon(0); @@ -1204,6 +1205,7 @@ } else { xpm = gc->prpl->list_icon (0); } + } if (xpm == NULL) xpm = (char **)no_icon_xpm; @@ -1826,7 +1828,6 @@ GdkBitmap *bm; GtkStyle *style; GtkStyle *style2; - int j; g->name = g_strdup(group);
