From 69e70bf7156d000c770beea2ce1a4e6e125247bd Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Thu, 14 Jun 2007 16:24:58 +0000 Subject: [PATCH] Fix 'sensitive' spelling. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1618 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- src/tools.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools.c b/src/tools.c index 682ce269..f64c1832 100644 --- a/src/tools.c +++ b/src/tools.c @@ -84,7 +84,7 @@ static void sc_on_tree_row_activated static void sc_fill_store(GtkTreeStore *store); static gboolean sc_insert(GtkTreeModel *model, GtkTreeIter *iter); -static void on_set_sensetive_toggled(GtkWidget *toggle_button, GtkWidget *target_widget); +static void on_set_sensitive_toggled(GtkWidget *toggle_button, GtkWidget *target_widget); static void on_class_name_entry_changed(GtkWidget *entry, CreateClassDialog *cc_dlg); static void on_base_name_entry_changed(GtkWidget *entry, CreateClassDialog *cc_dlg); static void on_create_class(CreateClassDialog *cc_dlg); @@ -1079,7 +1079,7 @@ void tools_show_dialog_create_class(gint type) gtk_container_add(GTK_CONTAINER(vbox), hbox); gtk_widget_show(hbox); g_signal_connect(G_OBJECT(cc_dlg->create_constructor_box), "toggled", - G_CALLBACK(on_set_sensetive_toggled), (gpointer)hbox); + G_CALLBACK(on_set_sensitive_toggled), (gpointer)hbox); label = gtk_label_new(_("GTK+ constructor type")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); @@ -1109,7 +1109,7 @@ void tools_show_dialog_create_class(gint type) gtk_widget_show(cc_dlg->dialog); } -static void on_set_sensetive_toggled(GtkWidget *toggle_button, GtkWidget *target_widget) +static void on_set_sensitive_toggled(GtkWidget *toggle_button, GtkWidget *target_widget) { g_return_if_fail(toggle_button != NULL); g_return_if_fail(GTK_IS_TOGGLE_BUTTON(toggle_button));