diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-10-25 06:07:52 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-10-25 06:07:52 +0800 |
commit | 285996988d5485b8470b8041334024b2bba74ec3 (patch) | |
tree | 49f03997b547f5bf132c4889fae4ac6d1c8ab91e | |
parent | 7e0411b4647fea7bebfe7d15a0edf923b88c5e9c (diff) | |
download | gsoc2013-evolution-285996988d5485b8470b8041334024b2bba74ec3.tar gsoc2013-evolution-285996988d5485b8470b8041334024b2bba74ec3.tar.gz gsoc2013-evolution-285996988d5485b8470b8041334024b2bba74ec3.tar.bz2 gsoc2013-evolution-285996988d5485b8470b8041334024b2bba74ec3.tar.lz gsoc2013-evolution-285996988d5485b8470b8041334024b2bba74ec3.tar.xz gsoc2013-evolution-285996988d5485b8470b8041334024b2bba74ec3.tar.zst gsoc2013-evolution-285996988d5485b8470b8041334024b2bba74ec3.zip |
initialize private structure on TasksComponent.
2003-10-24 Rodrigo Moya <rodrigo@ximian.com>
* gui/tasks-component.c (tasks_component_init): initialize private
structure on TasksComponent.
svn path=/trunk/; revision=23078
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/tasks-component.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 6de9cee8f4..5990fd5f65 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,10 @@ 2003-10-24 Rodrigo Moya <rodrigo@ximian.com> + * gui/tasks-component.c (tasks_component_init): initialize private + structure on TasksComponent. + +2003-10-24 Rodrigo Moya <rodrigo@ximian.com> + * gui/calendar-component.c (calendar_component_class_init): removed repeated initialization. (calendar_component_peek): use G_STRLOC for g_warning's. diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index 5eca87f078..6c5e305284 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -315,6 +315,8 @@ tasks_component_init (TasksComponent *component, TasksComponentClass *klass) g_free (new_dir); g_free (base_uri); } + + component->priv = priv; } /* Public API */ |