fixed email address display problem of gnomecard
- From: Hidetomo Hosono <h kondara org>
- To: gnome-pim-maint gnome org, gnome-devel-list gnome org
- Subject: fixed email address display problem of gnomecard
- Date: Thu, 25 Nov 1999 00:28:18 +0900
Hello, everyone.
Now I have found a bug in gncal. The to do summary widget does not
display right multibyte characters (aka mojibake) . So I fix it,
with a help of Akira Higuchi <a@kondara.org> (a lot of thanks!). So
now I send the patch, for gnome-pim-1.0.50. Thanks you.
----
Hidetomo Hosono @ GNOME Guys A-team of Kondara Project
http://www.kondara.org/~h/ (Sorry, now only for Japanese)
diff -uNr gnome-pim-1.0.50.prev/gncal/gncal-todo.c gnome-pim-1.0.50/gncal/gncal-todo.c
--- gnome-pim-1.0.50.prev/gncal/gncal-todo.c Tue Sep 28 05:49:43 1999
+++ gnome-pim-1.0.50/gncal/gncal-todo.c Mon Nov 22 16:34:06 1999
@@ -647,8 +647,10 @@
gtk_clist_clear (todo->clist);
- for (list = todo->calendar->cal->todo; list; list = list->next)
+ for (list = todo->calendar->cal->todo; list; list = list->next) {
+ gtk_widget_ensure_style (GTK_WIDGET (todo->clist));
insert_in_clist (todo, list->data);
+ }
/* if we are autoresizing then do it now */
if(todo_list_autoresize && todo->clist->rows != 0)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]