aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-view.c
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-01-02 19:24:14 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-01-02 19:24:14 +0800
commitdce2b73eb7e711d60352fa89354656068f357cbe (patch)
tree29981c7366d4a1b3d23fbe0028b0c78c3c89dd0f /mail/em-folder-view.c
parent8c1f42f3ae96a61e84db22235bd5f2714676140a (diff)
downloadgsoc2013-evolution-dce2b73eb7e711d60352fa89354656068f357cbe.tar
gsoc2013-evolution-dce2b73eb7e711d60352fa89354656068f357cbe.tar.gz
gsoc2013-evolution-dce2b73eb7e711d60352fa89354656068f357cbe.tar.bz2
gsoc2013-evolution-dce2b73eb7e711d60352fa89354656068f357cbe.tar.lz
gsoc2013-evolution-dce2b73eb7e711d60352fa89354656068f357cbe.tar.xz
gsoc2013-evolution-dce2b73eb7e711d60352fa89354656068f357cbe.tar.zst
gsoc2013-evolution-dce2b73eb7e711d60352fa89354656068f357cbe.zip
reviewed by: Parthasarathi <sparthasarathi@novell.com>
2006-01-02 Harish Krishnaswamy <kharish@novell.com> reviewed by: Parthasarathi <sparthasarathi@novell.com> * em-folder-view.c: (emfv_setting_notify): Set the properties on the bonobo component only if it already has been activated. Fixes #325375 (critical warning crasher). svn path=/trunk/; revision=31024
Diffstat (limited to 'mail/em-folder-view.c')
-rw-r--r--mail/em-folder-view.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/mail/em-folder-view.c b/mail/em-folder-view.c
index 4d0e964019..b90d974655 100644
--- a/mail/em-folder-view.c
+++ b/mail/em-folder-view.c
@@ -2707,14 +2707,20 @@ emfv_setting_notify(GConfClient *gconf, guint cnxn_id, GConfEntry *entry, EMFold
if (camel_object_meta_set (emfv->folder, "evolution:show_preview", state_gconf ? "1" : "0"))
camel_object_state_write (emfv->folder);
em_folder_browser_show_preview ((EMFolderBrowser *)emfv, state_gconf);
- bonobo_ui_component_set_prop (emfv->uic, "/commands/ViewPreview", "state", state_gconf ? "1" : "0", NULL);
+ /* Set the prop only if the component has already been
+ * activated. */
+ if (emfv->uic)
+ bonobo_ui_component_set_prop (emfv->uic, "/commands/ViewPreview", "state", state_gconf ? "1" : "0", NULL);
break; }
- case EMFV_SHOW_DELETED: {
+ case EMFV_SHOW_DELETED: {
gboolean state;
state = gconf_value_get_bool (value);
em_folder_view_set_hide_deleted (emfv, !state);
- bonobo_ui_component_set_prop (emfv->uic, "/commands/HideDeleted", "state", state ? "0" : "1", NULL);
+ /* Set the prop only if the component has already been
+ * activated. */
+ if (emfv->uic)
+ bonobo_ui_component_set_prop (emfv->uic, "/commands/HideDeleted", "state", state ? "0" : "1", NULL);
break; }
case EMFV_THREAD_LIST: {
gboolean state_gconf, state_camel;