summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJody Goldberg <jody@gnome.org>2003-01-15 04:48:33 +0000
committerJody Goldberg <jody@src.gnome.org>2003-01-15 04:48:33 +0000
commit8d8ec461bccb1c5c76baf2c2213dbdc35071843c (patch)
tree161699fc47caf7cb74104cccdbbd9c58a0f415f3
parentaa821e588ff7680c56d9e70422d90b71cf94f019 (diff)
downloadgnome-control-center-gnome-2-0.tar.gz
fix silly typo that would disable the error dialog in the event ofgnome-2-0
2003-01-14 Jody Goldberg <jody@gnome.org> * gnome-keyboard-properties.c (accessibility_button_clicked) : fix silly typo that would disable the error dialog in the event of failure.
-rw-r--r--capplets/keyboard/ChangeLog5
-rw-r--r--capplets/keyboard/gnome-keyboard-properties.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/capplets/keyboard/ChangeLog b/capplets/keyboard/ChangeLog
index 02746f1b1..18f688d3a 100644
--- a/capplets/keyboard/ChangeLog
+++ b/capplets/keyboard/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-14 Jody Goldberg <jody@gnome.org>
+
+ * gnome-keyboard-properties.c (accessibility_button_clicked) : fix
+ silly typo that would disable the error dialog in the event of failure.
+
2002-12-19 Jody Goldberg <jody@gnome.org>
* Release 2.0.3.2
diff --git a/capplets/keyboard/gnome-keyboard-properties.c b/capplets/keyboard/gnome-keyboard-properties.c
index d3c294f51..9e2a90975 100644
--- a/capplets/keyboard/gnome-keyboard-properties.c
+++ b/capplets/keyboard/gnome-keyboard-properties.c
@@ -154,7 +154,7 @@ accessibility_button_clicked (GtkWidget *widget,
gpointer data)
{
GError *err = NULL;
- if (!g_spawn_command_line_async ("gnome-accessibility-keyboard-properties", NULL))
+ if (!g_spawn_command_line_async ("gnome-accessibility-keyboard-properties", &err))
capplet_error_dialog (GTK_WINDOW (gtk_widget_get_toplevel (widget)),
_("There was an error launching the keyboard capplet : %s"),
err);