diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-27 06:19:33 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-27 06:19:33 +0800 |
commit | ef0da865b433ad3d24a73a0710c039649a48ff74 (patch) | |
tree | 5f027f8f6aae32e3c40a63dd1bdab161d8207de4 /e-util/e-util.c | |
parent | d2cc21d95e7a95e3cc19c9d0d0b9367deab358f1 (diff) | |
download | gsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.tar.gz gsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.tar.zst gsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.zip |
Bump up to 0.15.99.5.
* configure.in: Bump up to 0.15.99.5.
* gal/util/e-util.c
(e_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER): pass
`args[4]' as the fourth argument instead of `args[3]' again.
(e_marshal_INT__POINTER_POINTER_POINTER_BOOL): New.
svn path=/trunk/; revision=14175
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r-- | e-util/e-util.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index ceff2b343c..ac775e92bd 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -735,10 +735,31 @@ e_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER (GtkObject *object, GTK_VALUE_POINTER (args[1]), GTK_VALUE_POINTER (args[2]), GTK_VALUE_POINTER (args[3]), - GTK_VALUE_POINTER (args[3]), + GTK_VALUE_POINTER (args[4]), func_data); } +typedef void (*GtkSignal_NONE__POINTER_POINTER_POINTER_BOOL) (GtkObject *, + gpointer, gpointer, gpointer, gboolean, + gpointer user_data); + +void +e_marshal_NONE__POINTER_POINTER_POINTER_BOOL (GtkObject *object, + GtkSignalFunc func, + gpointer func_data, + GtkArg *args) +{ + GtkSignal_NONE__POINTER_POINTER_POINTER_BOOL rfunc; + + rfunc = (GtkSignal_NONE__POINTER_POINTER_POINTER_BOOL) func; + + (*rfunc) (object, + GTK_VALUE_POINTER (args[0]), + GTK_VALUE_POINTER (args[1]), + GTK_VALUE_POINTER (args[2]), + GTK_VALUE_BOOL (args[3]), + func_data); +} void e_marshal_NONE__POINTER_INT_INT_INT (GtkObject *object, |