summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2013-11-27 14:54:27 -0500
committerSteve Zesch <[email protected]>2013-11-27 14:54:27 -0500
commitd36708e79f096deda3ac9730a229a5fac8b61e52 (patch)
treede0ff7376bbb8fd00c56033a64fb75f8a94af369
parent0dc7dff331879c64494fe663bf2eee7970df20d4 (diff)
downloadmate-calc-d36708e79f096deda3ac9730a229a5fac8b61e52.tar.bz2
mate-calc-d36708e79f096deda3ac9730a229a5fac8b61e52.tar.xz
Fixed typo in help_cb
closes #21
-rw-r--r--src/math-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math-window.c b/src/math-window.c
index 5d7cc12..d05b79b 100644
--- a/src/math-window.c
+++ b/src/math-window.c
@@ -222,7 +222,7 @@ static void help_cb(GtkWidget *widget, MathWindow *window)
d = gtk_message_dialog_new(GTK_WINDOW(window), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", message);
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(d), "%s", error->message);
- g_signal_connect(d, "respones", G_CALLBACK(gtk_widget_destroy), NULL);
+ g_signal_connect(d, "response", G_CALLBACK(gtk_widget_destroy), NULL);
gtk_window_present(GTK_WINDOW (d));
g_error_free(error);