Mercurial > pidgin.yaz
changeset 27778:37b4d9d4ab2e
utf8 character for close button had been saved in wrong encoding.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Sat, 01 Mar 2008 15:33:57 +0000 |
parents | 2cb44870580d |
children | 75ec5def57b3 |
files | pidgin/gtkconv.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkconv.c Sat Mar 01 14:39:04 2008 +0000 +++ b/pidgin/gtkconv.c Sat Mar 01 15:33:57 2008 +0000 @@ -9277,7 +9277,7 @@ ptr = gdk_cursor_new(GDK_LEFT_PTR); } - gtk_label_set_markup(label, "×"); + gtk_label_set_markup(label, "×"); gdk_window_set_cursor(event->window, ptr); return FALSE; } @@ -9290,7 +9290,7 @@ hand = gdk_cursor_new(GDK_HAND2); } - gtk_label_set_markup(label, "<u>×</u>"); + gtk_label_set_markup(label, "<u>×</u>"); gdk_window_set_cursor(event->window, hand); return FALSE; }