diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-27 23:53:45 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-27 23:53:45 +0800 |
commit | 51ddf878bd648c81c5cd47ca3703ed0cea71a504 (patch) | |
tree | 671794eb06c971fc5f71f6d74196dfedb2c7b5c8 /e-util/e-dialog-widgets.c | |
parent | 5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6 (diff) | |
download | gsoc2013-evolution-51ddf878bd648c81c5cd47ca3703ed0cea71a504.tar gsoc2013-evolution-51ddf878bd648c81c5cd47ca3703ed0cea71a504.tar.gz gsoc2013-evolution-51ddf878bd648c81c5cd47ca3703ed0cea71a504.tar.bz2 gsoc2013-evolution-51ddf878bd648c81c5cd47ca3703ed0cea71a504.tar.lz gsoc2013-evolution-51ddf878bd648c81c5cd47ca3703ed0cea71a504.tar.xz gsoc2013-evolution-51ddf878bd648c81c5cd47ca3703ed0cea71a504.tar.zst gsoc2013-evolution-51ddf878bd648c81c5cd47ca3703ed0cea71a504.zip |
Fix typo.
svn path=/trunk/; revision=3758
Diffstat (limited to 'e-util/e-dialog-widgets.c')
-rw-r--r-- | e-util/e-dialog-widgets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-dialog-widgets.c b/e-util/e-dialog-widgets.c index d4a50e0cd7..d772ed1f35 100644 --- a/e-util/e-dialog-widgets.c +++ b/e-util/e-dialog-widgets.c @@ -245,7 +245,7 @@ get_toggle_value (GtkToggleButton *toggle, gpointer value_var, gpointer info) { gboolean *value; - value = (gboolean *) value; + value = (gboolean *) value_var; *value = e_dialog_toggle_get (GTK_WIDGET (toggle)); } |