diff options
author | Milan Crha <mcrha@redhat.com> | 2009-11-27 01:28:33 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-11-27 01:28:33 +0800 |
commit | c0657eb024e529d720ace2871d9de407df1cdf7f (patch) | |
tree | 78edf2de2329c5dcecdfdf66c027827a6c489cbb | |
parent | de85b6fbec63e6abb58097aa9f2ffc750ff94ed2 (diff) | |
download | gsoc2013-evolution-c0657eb024e529d720ace2871d9de407df1cdf7f.tar gsoc2013-evolution-c0657eb024e529d720ace2871d9de407df1cdf7f.tar.gz gsoc2013-evolution-c0657eb024e529d720ace2871d9de407df1cdf7f.tar.bz2 gsoc2013-evolution-c0657eb024e529d720ace2871d9de407df1cdf7f.tar.lz gsoc2013-evolution-c0657eb024e529d720ace2871d9de407df1cdf7f.tar.xz gsoc2013-evolution-c0657eb024e529d720ace2871d9de407df1cdf7f.tar.zst gsoc2013-evolution-c0657eb024e529d720ace2871d9de407df1cdf7f.zip |
Fix uninitialized variable from a patch for bug #591330
Thanks to Matthew Barnes noticing it.
-rw-r--r-- | calendar/gui/e-cal-component-preview.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/calendar/gui/e-cal-component-preview.c b/calendar/gui/e-cal-component-preview.c index 519c165b88..f93b162b2d 100644 --- a/calendar/gui/e-cal-component-preview.c +++ b/calendar/gui/e-cal-component-preview.c @@ -394,6 +394,7 @@ cal_component_preview_class_init (ECalComponentPreviewClass *class) parent_class = g_type_class_peek_parent (class); g_type_class_add_private (class, sizeof (ECalComponentPreviewPrivate)); + object_class = G_OBJECT_CLASS (class); object_class->finalize = cal_component_preview_finalize; } |