# HG changeset patch # User Yoshiki Yazawa # Date 1204385637 0 # Node ID 37b4d9d4ab2e5b7141e95ed7f848c8ab5ffbb68d # Parent 2cb44870580d081aa1cc39662d916b3eea0ecc45 utf8 character for close button had been saved in wrong encoding. diff -r 2cb44870580d -r 37b4d9d4ab2e pidgin/gtkconv.c --- 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, "×"); + gtk_label_set_markup(label, "×"); gdk_window_set_cursor(event->window, hand); return FALSE; }