diff options
author | Milan Crha <mcrha@redhat.com> | 2010-09-29 17:39:26 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-09-29 17:39:26 +0800 |
commit | 6ec1118c92dcdf1f8377efde3ea575b5bc94412a (patch) | |
tree | 8cf3c669abb95acd6cf4aab979c0a1181760bd54 /calendar/gui/e-calendar-view.c | |
parent | c7b134377499a7bdc4a109cd1ec374ab5ac57a7b (diff) | |
download | gsoc2013-evolution-6ec1118c92dcdf1f8377efde3ea575b5bc94412a.tar.gz gsoc2013-evolution-6ec1118c92dcdf1f8377efde3ea575b5bc94412a.tar.zst gsoc2013-evolution-6ec1118c92dcdf1f8377efde3ea575b5bc94412a.zip |
Bug #629462 - Tasks 'Due' filters don't work properly
Diffstat (limited to 'calendar/gui/e-calendar-view.c')
-rw-r--r-- | calendar/gui/e-calendar-view.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 5b047999cf..94f4579788 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -353,6 +353,10 @@ calendar_view_constructed (GObject *object) * the GType accurately. See GInstanceInitFunc documentation * for details of the problem. */ e_extensible_load_extensions (E_EXTENSIBLE (object)); + + /* Chain up to parent's constructed() method. */ + if (G_OBJECT_CLASS (e_calendar_view_parent_class)->constructed) + G_OBJECT_CLASS (e_calendar_view_parent_class)->constructed (object); } static void |