summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2013-11-27 14:54:27 -0500
committerinfirit <[email protected]>2013-12-17 13:56:14 +0100
commit0712ac76d688d9cb0cadedbf587031b8ac6dc8b2 (patch)
treeeb4400d06257b7a6ab696c9218abbb525fed8a6e
parente82b8d60687b71544dc703a9e981509ac0824eee (diff)
downloadmate-calc-0712ac76d688d9cb0cadedbf587031b8ac6dc8b2.tar.bz2
mate-calc-0712ac76d688d9cb0cadedbf587031b8ac6dc8b2.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 8a9302d..8f152b3 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);