aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/memos-component.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2008-01-03 18:08:07 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2008-01-03 18:08:07 +0800
commit7e71a8819e5a7bddc0046d9f1e995f248ee428df (patch)
treeae6e53c6784582c8fb96184232cc4e75c6496198 /calendar/gui/memos-component.c
parent268dc11c79648cd5a4e532d41b07ad4576bdf815 (diff)
downloadgsoc2013-evolution-7e71a8819e5a7bddc0046d9f1e995f248ee428df.tar
gsoc2013-evolution-7e71a8819e5a7bddc0046d9f1e995f248ee428df.tar.gz
gsoc2013-evolution-7e71a8819e5a7bddc0046d9f1e995f248ee428df.tar.bz2
gsoc2013-evolution-7e71a8819e5a7bddc0046d9f1e995f248ee428df.tar.lz
gsoc2013-evolution-7e71a8819e5a7bddc0046d9f1e995f248ee428df.tar.xz
gsoc2013-evolution-7e71a8819e5a7bddc0046d9f1e995f248ee428df.tar.zst
gsoc2013-evolution-7e71a8819e5a7bddc0046d9f1e995f248ee428df.zip
** Fix for bug #506814
2008-01-03 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #506814 * gui/tasks-component.c: (create_new_todo): * gui/tasks-component.c: (create_new_todo): Add the signal only if the view is present. svn path=/trunk/; revision=34753
Diffstat (limited to 'calendar/gui/memos-component.c')
-rw-r--r--calendar/gui/memos-component.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/memos-component.c b/calendar/gui/memos-component.c
index 801fe1cf40..3c57846972 100644
--- a/calendar/gui/memos-component.c
+++ b/calendar/gui/memos-component.c
@@ -1013,7 +1013,8 @@ create_new_memo (MemosComponent *memo_component, gboolean is_assigned, MemosComp
editor = memo_editor_new (ecal, flags);
comp = cal_comp_memo_new_with_defaults (ecal);
- g_signal_connect (editor, "object_created", G_CALLBACK (object_created_cb), e_memos_get_calendar_table (component_view->memos));
+ if (component_view->memos)
+ g_signal_connect (editor, "object_created", G_CALLBACK (object_created_cb), e_memos_get_calendar_table (component_view->memos));
comp_editor_edit_comp (COMP_EDITOR (editor), comp);
comp_editor_focus (COMP_EDITOR (editor));