Revision: 7179
Author: ek.kato
Date: Sun Jul 3 19:29:37 2011
Log: * gtk2/immodule/uim-cand-win-horizontal-gtk.c
* gtk2/candwin/horizontal-gtk.c
- (update_table_button) : Show colon after the headings.
http://code.google.com/p/uim/source/detail?r=7179
Modified:
/trunk/gtk2/candwin/horizontal-gtk.c
/trunk/gtk2/immodule/uim-cand-win-horizontal-gtk.c
=======================================
--- /trunk/gtk2/candwin/horizontal-gtk.c Sun Jul 3 19:18:40 2011
+++ /trunk/gtk2/candwin/horizontal-gtk.c Sun Jul 3 19:29:37 2011
@@ -1047,7 +1047,7 @@
GtkWidget *label;
label = gtk_bin_get_child(GTK_BIN(button));
if (heading && heading[0] != '\0') {
- gchar *text = g_strdup_printf("%s %s", heading, cand_str);
+ gchar *text = g_strdup_printf("%s: %s", heading, cand_str);
gtk_label_set_text(GTK_LABEL(label), text);
g_free(text);
} else {
=======================================
--- /trunk/gtk2/immodule/uim-cand-win-horizontal-gtk.c Sat Jul 2 00:30:48
2011
+++ /trunk/gtk2/immodule/uim-cand-win-horizontal-gtk.c Sun Jul 3 19:29:37
2011
@@ -547,7 +547,7 @@
GtkWidget *label;
label = gtk_bin_get_child(GTK_BIN(button));
if (heading && heading[0] != '\0') {
- gchar *text = g_strdup_printf("%s %s", heading, cand_str);
+ gchar *text = g_strdup_printf("%s: %s", heading, cand_str);
gtk_label_set_text(GTK_LABEL(label), text);
g_free(text);
} else {