diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-03-20 17:51:26 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-03-20 17:51:26 +0800 |
commit | 877168077658c2681c3741d5210c135069eaeca8 (patch) | |
tree | a3d07bda776207305514b909a1d60b84ab0c0635 | |
parent | 4380849ce4f77862a9431970cb61e6b827646092 (diff) | |
download | gsoc2013-evolution-877168077658c2681c3741d5210c135069eaeca8.tar gsoc2013-evolution-877168077658c2681c3741d5210c135069eaeca8.tar.gz gsoc2013-evolution-877168077658c2681c3741d5210c135069eaeca8.tar.bz2 gsoc2013-evolution-877168077658c2681c3741d5210c135069eaeca8.tar.lz gsoc2013-evolution-877168077658c2681c3741d5210c135069eaeca8.tar.xz gsoc2013-evolution-877168077658c2681c3741d5210c135069eaeca8.tar.zst gsoc2013-evolution-877168077658c2681c3741d5210c135069eaeca8.zip |
Fixed the GTK_RETLOC calls for these marshallers.
2001-03-20 Christopher James Lahey <clahey@ximian.com>
* gal/util/e-util.c (e_marshal_INT__INT_POINTER_INT_POINTER,
e_marshal_BOOL__INT_POINTER_INT_POINTER_INT_INT_INT): Fixed the
GTK_RETLOC calls for these marshallers.
svn path=/trunk/; revision=8843
-rw-r--r-- | e-util/e-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index 436e11b141..8f393e1b86 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -284,7 +284,7 @@ e_marshal_INT__INT_POINTER_INT_POINTER (GtkObject * object, { GtkSignal_INT__INT_POINTER_INT_POINTER rfunc; gint *return_val; - return_val = GTK_RETLOC_INT (args[3]); + return_val = GTK_RETLOC_INT (args[4]); rfunc = (GtkSignal_INT__INT_POINTER_INT_POINTER) func; *return_val = (*rfunc) (object, GTK_VALUE_INT (args[0]), @@ -486,7 +486,7 @@ e_marshal_BOOL__INT_POINTER_INT_POINTER_INT_INT_INT (GtkObject * object, { GtkSignal_BOOL__INT_POINTER_INT_POINTER_INT_INT_INT rfunc; gboolean *return_val; - return_val = GTK_RETLOC_BOOL (args[6]); + return_val = GTK_RETLOC_BOOL (args[7]); rfunc = (GtkSignal_BOOL__INT_POINTER_INT_POINTER_INT_INT_INT) func; *return_val = (*rfunc) (object, GTK_VALUE_INT (args[0]), |