diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-format-html-print.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index bad1191117..3dfe1a41d8 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2009-01-27 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #561628 + + * em-format-html-print.c: (efhp_class_init): + Initialize 'parent_class' with its parent, not with itself. + 2009-01-19 Milan Crha <mcrha@redhat.com> ** Fix for bug #204891 diff --git a/mail/em-format-html-print.c b/mail/em-format-html-print.c index c0d3573a3e..a903820ca3 100644 --- a/mail/em-format-html-print.c +++ b/mail/em-format-html-print.c @@ -52,7 +52,7 @@ efhp_finalize (GObject *o) static void efhp_class_init (GObjectClass *class) { - parent_class = g_type_class_ref(EM_TYPE_FORMAT_HTML_PRINT); + parent_class = g_type_class_peek_parent (class); class->finalize = efhp_finalize; } |