diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-01-31 15:26:52 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-01-31 15:26:52 +0000 |
commit | bb3ddb39f6a6cd272ebc61c778c19427196351bb (patch) | |
tree | aa46db3fe2f4ff866392ec45e2e2c7968d6815bf /gtk/gtktextutil.c | |
parent | 35280973305a4b13c5e83d399463571709b78458 (diff) | |
download | gtk+-bb3ddb39f6a6cd272ebc61c778c19427196351bb.tar.gz |
Handle the case where bin->child is NULL. (#70153, Padraig O'Briain)
Thu Jan 31 10:21:05 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkplug.c (gtk_plug_focus): Handle the case where
bin->child is NULL. (#70153, Padraig O'Briain)
* gtk/gtktextutil.c (_gtk_text_util_append_special_char_menuitems):
Actually call gettext() on the labels; previously they
were marked with N_() but we never called gettext().
Diffstat (limited to 'gtk/gtktextutil.c')
-rw-r--r-- | gtk/gtktextutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktextutil.c b/gtk/gtktextutil.c index 7a53fab676..f6265e6703 100644 --- a/gtk/gtktextutil.c +++ b/gtk/gtktextutil.c @@ -102,7 +102,7 @@ _gtk_text_util_append_special_char_menuitems (GtkMenuShell *menushe info->func = func; info->data = data; - menuitem = gtk_menu_item_new_with_mnemonic (bidi_menu_entries[i].label); + menuitem = gtk_menu_item_new_with_mnemonic (_(bidi_menu_entries[i].label)); g_object_set_data (G_OBJECT (menuitem), "gtk-unicode-menu-entry", &bidi_menu_entries[i]); |