From c40c49e6f9ae748601e727ac9a4015304eb45d99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Fri, 15 Jun 2007 13:33:01 +0000 Subject: [PATCH] Fixed spelling of GTK. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1621 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- ChangeLog | 5 +++++ geany.glade | 2 +- src/interface.c | 2 +- src/tools.c | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index bfaef04dc..3144ef73e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-15 Enrico Tröger + + * geany.glade, src/interface.c, src/tools.c: Fixed spelling of GTK. + + 2007-06-14 Frank Lanitz * src/tools.c: Fixed a small typo. diff --git a/geany.glade b/geany.glade index 91814f01d..f13d4e009 100644 --- a/geany.glade +++ b/geany.glade @@ -1410,7 +1410,7 @@ True - Gtk+ class + GTK+ class True diff --git a/src/interface.c b/src/interface.c index 70f4a3579..feacaed8b 100644 --- a/src/interface.c +++ b/src/interface.c @@ -975,7 +975,7 @@ create_window1 (void) gtk_widget_show (menu_create_cpp_class); gtk_container_add (GTK_CONTAINER (menu_create_class1_menu), menu_create_cpp_class); - menu_create_gtk_class = gtk_menu_item_new_with_mnemonic (_("Gtk+ class")); + menu_create_gtk_class = gtk_menu_item_new_with_mnemonic (_("GTK+ class")); gtk_widget_show (menu_create_gtk_class); gtk_container_add (GTK_CONTAINER (menu_create_class1_menu), menu_create_gtk_class); diff --git a/src/tools.c b/src/tools.c index a52baa27a..f64c1832d 100644 --- a/src/tools.c +++ b/src/tools.c @@ -1081,7 +1081,7 @@ void tools_show_dialog_create_class(gint type) g_signal_connect(G_OBJECT(cc_dlg->create_constructor_box), "toggled", G_CALLBACK(on_set_sensitive_toggled), (gpointer)hbox); - label = gtk_label_new(_("Gtk+ constructor type")); + label = gtk_label_new(_("GTK+ constructor type")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); gtk_widget_show(label);