aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-27 06:19:33 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-27 06:19:33 +0800
commitef0da865b433ad3d24a73a0710c039649a48ff74 (patch)
tree5f027f8f6aae32e3c40a63dd1bdab161d8207de4 /e-util
parentd2cc21d95e7a95e3cc19c9d0d0b9367deab358f1 (diff)
downloadgsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.tar
gsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.tar.gz
gsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.tar.bz2
gsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.tar.lz
gsoc2013-evolution-ef0da865b433ad3d24a73a0710c039649a48ff74.tar.xz
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')
-rw-r--r--e-util/e-util.c23
-rw-r--r--e-util/e-util.h4
2 files changed, 26 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,
diff --git a/e-util/e-util.h b/e-util/e-util.h
index 974834386c..fb8a8944ce 100644
--- a/e-util/e-util.h
+++ b/e-util/e-util.h
@@ -252,6 +252,10 @@ void e_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER (GtkO
GtkSignalFunc func,
gpointer func_data,
GtkArg *args);
+void e_marshal_NONE__POINTER_POINTER_POINTER_BOOL (GtkObject *object,
+ GtkSignalFunc func,
+ gpointer func_data,
+ GtkArg *args);
void e_marshal_NONE__POINTER_INT_INT_INT (GtkObject *object,
GtkSignalFunc func,
gpointer func_data,