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 /calendar | |
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 'calendar')
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/e-calendar-marshal.list | 3 | ||||
-rw-r--r-- | calendar/gui/e-memos.c | 4 | ||||
-rw-r--r-- | calendar/gui/e-tasks.c | 4 |
4 files changed, 12 insertions, 7 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index a58079e3f4..349cd18036 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2007-09-27 Hiroyuki Ikezoe <poincare@ikezoe.net> + + ** Fix for bug #461195 + + * gui/e-calendar-marshal.list: Remove needless marshalers. + * gui/e-memos.c: + * gui/e-tasks.c: Use GObject's marshalers. + 2007-09-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #477045 diff --git a/calendar/gui/e-calendar-marshal.list b/calendar/gui/e-calendar-marshal.list index 1b258f9244..5e0a5c5b22 100644 --- a/calendar/gui/e-calendar-marshal.list +++ b/calendar/gui/e-calendar-marshal.list @@ -1,6 +1,3 @@ -NONE:INT -NONE:POINTER -NONE:OBJECT NONE:INT,STRING NONE:INT,BOOL NONE:INT,POINTER diff --git a/calendar/gui/e-memos.c b/calendar/gui/e-memos.c index c04453d5d5..60dc54a927 100644 --- a/calendar/gui/e-memos.c +++ b/calendar/gui/e-memos.c @@ -513,7 +513,7 @@ e_memos_class_init (EMemosClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EMemosClass, source_added), NULL, NULL, - e_calendar_marshal_VOID__OBJECT, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT); @@ -524,7 +524,7 @@ e_memos_class_init (EMemosClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EMemosClass, source_removed), NULL, NULL, - e_calendar_marshal_VOID__OBJECT, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT); diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c index 2c44e58927..d1ede74793 100644 --- a/calendar/gui/e-tasks.c +++ b/calendar/gui/e-tasks.c @@ -641,7 +641,7 @@ e_tasks_class_init (ETasksClass *class) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (ETasksClass, source_added), NULL, NULL, - e_calendar_marshal_VOID__OBJECT, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT); @@ -652,7 +652,7 @@ e_tasks_class_init (ETasksClass *class) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (ETasksClass, source_removed), NULL, NULL, - e_calendar_marshal_VOID__OBJECT, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT); |