aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-06-27 23:53:45 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-06-27 23:53:45 +0800
commit51ddf878bd648c81c5cd47ca3703ed0cea71a504 (patch)
tree671794eb06c971fc5f71f6d74196dfedb2c7b5c8
parent5b8e6be0cfe39f04241577d0dabe01d9ad86ddc6 (diff)
downloadgsoc2013-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
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-dialog-widgets.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 6acb182f52..ba7f4cc2b0 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,5 +1,10 @@
2000-06-27 Ettore Perazzoli <ettore@helixcode.com>
+ * e-dialog-widgets.c (get_toggle_value): Use `value_var', not
+ `value'.
+
+2000-06-27 Ettore Perazzoli <ettore@helixcode.com>
+
* Makefile.am (INCLUDES): `-I$(top_srcdir)' to fix compilation
with builddir != srcdir.
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));
}