diff options
author | Milan Crha <mcrha@redhat.com> | 2009-01-28 03:03:13 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2009-01-28 03:03:13 +0800 |
commit | 402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd (patch) | |
tree | d25f035aa5028455156da8e555a0dca62a083fc5 /mail/em-format-html-print.c | |
parent | 2e94db8a65126ffcb456bd2823cf45e5b1510b0b (diff) | |
download | gsoc2013-evolution-402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd.tar gsoc2013-evolution-402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd.tar.gz gsoc2013-evolution-402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd.tar.bz2 gsoc2013-evolution-402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd.tar.lz gsoc2013-evolution-402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd.tar.xz gsoc2013-evolution-402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd.tar.zst gsoc2013-evolution-402ec23cc4db1c7e3ba3f329a6f185d08f73bdcd.zip |
** Fix for bug #561628
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.
svn path=/trunk/; revision=37142
Diffstat (limited to 'mail/em-format-html-print.c')
-rw-r--r-- | mail/em-format-html-print.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |