diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-12-31 13:29:45 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-12-31 13:29:45 +0800 |
commit | 0a836b1b03d9059d00ff6bb3454f3b5907052a17 (patch) | |
tree | 64dc37be3b5b6bf3af7815e4b9f4b519548e0d87 /calendar/gui | |
parent | a79287a6a563786fedbdfca65de5f2a7df0fe34b (diff) | |
download | gsoc2013-evolution-0a836b1b03d9059d00ff6bb3454f3b5907052a17.tar.gz gsoc2013-evolution-0a836b1b03d9059d00ff6bb3454f3b5907052a17.tar.zst gsoc2013-evolution-0a836b1b03d9059d00ff6bb3454f3b5907052a17.zip |
Matthew Barnes <mbarnes@redhat.com> ** Fix for bug #562091 - Create MemoPage after the base class object has been created and initialized.
svn path=/trunk/; revision=36948
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/memo-editor.c | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/calendar/gui/dialogs/memo-editor.c b/calendar/gui/dialogs/memo-editor.c index 89016f8c91..4fbf35d916 100644 --- a/calendar/gui/dialogs/memo-editor.c +++ b/calendar/gui/dialogs/memo-editor.c @@ -97,6 +97,21 @@ memo_editor_dispose (GObject *object) } static void +memo_editor_constructed (GObject *object) +{ + MemoEditorPrivate *priv; + CompEditor *editor; + + priv = MEMO_EDITOR_GET_PRIVATE (object); + editor = COMP_EDITOR (object); + + priv->memo_page = memo_page_new (editor); + comp_editor_append_page ( + editor, COMP_EDITOR_PAGE (priv->memo_page), + _("Memo"), TRUE); +} + +static void memo_editor_class_init (MemoEditorClass *class) { GObjectClass *object_class; @@ -106,6 +121,7 @@ memo_editor_class_init (MemoEditorClass *class) object_class = G_OBJECT_CLASS (class); object_class->dispose = memo_editor_dispose; + object_class->constructed = memo_editor_constructed; /* TODO Add a help section for memos. */ editor_class = COMP_EDITOR_CLASS (class); @@ -132,12 +148,6 @@ memo_editor_init (MemoEditor *me) g_critical ("%s: %s", G_STRFUNC, error->message); g_error_free (error); } - - me->priv->memo_page = memo_page_new (editor); - comp_editor_append_page ( - COMP_EDITOR (me), - COMP_EDITOR_PAGE (me->priv->memo_page), - _("Memo"), TRUE); } /** |