summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-06-12 17:51:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:38 -0500
commit8dcb4aa084457e6d7a68467dceebc11abe4464bd (patch)
tree175acbd3f39e4e8c73a9cb8219a72285bdef8077 /source4/lib
parent9503af8d648eb727b954dfe4c09d5764038a245e (diff)
downloadsamba-8dcb4aa084457e6d7a68467dceebc11abe4464bd.tar.gz
samba-8dcb4aa084457e6d7a68467dceebc11abe4464bd.tar.bz2
samba-8dcb4aa084457e6d7a68467dceebc11abe4464bd.zip
r1119: Saner keyboard shortcuts
(This used to be commit 971941acc7e75da89b1bdc612fd476a7f6124dcb)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/registry/tools/gregedit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/lib/registry/tools/gregedit.c b/source4/lib/registry/tools/gregedit.c
index d878461bff..f9e1786d71 100644
--- a/source4/lib/registry/tools/gregedit.c
+++ b/source4/lib/registry/tools/gregedit.c
@@ -451,7 +451,7 @@ static GtkWidget* create_mainwin (void)
gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu_file), menu_file_menu);
if(reg_has_backend("nt4")) {
- open_nt4 = gtk_image_menu_item_new_with_mnemonic("_Open NT4 file");
+ open_nt4 = gtk_image_menu_item_new_with_mnemonic("Open _NT4 file");
gtk_widget_show (open_nt4);
gtk_container_add (GTK_CONTAINER (menu_file_menu), open_nt4);
@@ -461,7 +461,7 @@ static GtkWidget* create_mainwin (void)
}
if(reg_has_backend("w95")) {
- open_w95 = gtk_image_menu_item_new_with_mnemonic("_Open Win9x file");
+ open_w95 = gtk_image_menu_item_new_with_mnemonic("Open Win_9x file");
gtk_widget_show (open_w95);
gtk_container_add (GTK_CONTAINER (menu_file_menu), open_w95);
@@ -471,7 +471,7 @@ static GtkWidget* create_mainwin (void)
}
if(reg_has_backend("gconf")) {
- open_gconf = gtk_image_menu_item_new_with_mnemonic ("_Open GConf");
+ open_gconf = gtk_image_menu_item_new_with_mnemonic ("Open _GConf");
gtk_widget_show (open_gconf);
gtk_container_add (GTK_CONTAINER (menu_file_menu), open_gconf);
@@ -481,7 +481,7 @@ static GtkWidget* create_mainwin (void)
}
if(reg_has_backend("rpc")) {
- open_remote = gtk_menu_item_new_with_mnemonic ("_Open Remote");
+ open_remote = gtk_menu_item_new_with_mnemonic ("Open _Remote");
gtk_widget_show (open_remote);
gtk_container_add (GTK_CONTAINER (menu_file_menu), open_remote);