diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2007-09-28 04:08:55 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-09-28 04:08:55 +0800 |
commit | e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb (patch) | |
tree | 1b85999b0475986f41f1f27abbd24d4a89dead3f /e-util | |
parent | 37c142d956ca60725b1e989e95860e185156f5e9 (diff) | |
download | gsoc2013-evolution-e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb.tar.gz gsoc2013-evolution-e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb.tar.zst gsoc2013-evolution-e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb.zip |
Fix for bug #461195 from Hiroyuki Ikezoe.
Use GObject's marshalers whenever possible.
svn path=/trunk/; revision=34324
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 8 | ||||
-rw-r--r-- | e-util/e-signature-list.c | 6 | ||||
-rw-r--r-- | e-util/e-text-event-processor.c | 2 | ||||
-rw-r--r-- | e-util/e-util-marshal.list | 6 |
4 files changed, 12 insertions, 10 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 124506509e..95de506f9c 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,11 @@ +2007-09-27 Hiroyuki Ikezoe <poincare@ikezoe.net> + + ** Fix for bug #461195 + + * e-uril-marshal.list: Remove needless marshalers. + * e-text-event-processor.c: + * e-signature-list.c: Use GObject's marshalers. + 2007-09-10 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #471791 diff --git a/e-util/e-signature-list.c b/e-util/e-signature-list.c index 4f57645b92..cbdf138a95 100644 --- a/e-util/e-signature-list.c +++ b/e-util/e-signature-list.c @@ -98,7 +98,7 @@ e_signature_list_class_init (ESignatureListClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (ESignatureListClass, signature_added), NULL, NULL, - e_util_marshal_NONE__OBJECT, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, E_TYPE_SIGNATURE); signals[SIGNATURE_CHANGED] = @@ -107,7 +107,7 @@ e_signature_list_class_init (ESignatureListClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (ESignatureListClass, signature_changed), NULL, NULL, - e_util_marshal_NONE__OBJECT, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, E_TYPE_SIGNATURE); signals[SIGNATURE_REMOVED] = @@ -116,7 +116,7 @@ e_signature_list_class_init (ESignatureListClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (ESignatureListClass, signature_removed), NULL, NULL, - e_util_marshal_NONE__OBJECT, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, E_TYPE_SIGNATURE); } diff --git a/e-util/e-text-event-processor.c b/e-util/e-text-event-processor.c index 4c69442fa7..a46301db73 100644 --- a/e-util/e-text-event-processor.c +++ b/e-util/e-text-event-processor.c @@ -72,7 +72,7 @@ e_text_event_processor_class_init (ETextEventProcessorClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (ETextEventProcessorClass, command), NULL, NULL, - e_util_marshal_NONE__POINTER, + g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); diff --git a/e-util/e-util-marshal.list b/e-util/e-util-marshal.list index b478efb1ce..9314f25777 100644 --- a/e-util/e-util-marshal.list +++ b/e-util/e-util-marshal.list @@ -13,11 +13,8 @@ INT:INT,INT,BOXED INT:INT,POINTER,INT,BOXED INT:OBJECT,BOXED INT:POINTER -NONE:BOXED NONE:BOXED,INT NONE:BOXED,INT,INT -NONE:DOUBLE -NONE:INT NONE:INT,INT NONE:INT,INT,BOXED NONE:INT,INT,OBJECT @@ -34,11 +31,8 @@ NONE:INT,POINTER,INT,OBJECT,BOXED,UINT,UINT NONE:INT,POINTER,INT,OBJECT,INT,INT,BOXED,UINT,UINT NONE:INT,POINTER,INT,OBJECT,UINT NONE:INT,STRING -NONE:NONE -NONE:OBJECT NONE:OBJECT,OBJECT NONE:OBJECT,DOUBLE,DOUBLE,BOOLEAN -NONE:POINTER NONE:POINTER,BOOLEAN NONE:POINTER,BOOLEAN,BOOLEAN,BOOLEAN NONE:POINTER,INT |