aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-03-02 01:10:50 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-03-02 01:10:50 +0800
commit63145be20bb873e902f2054da8a902fdaadb7545 (patch)
tree2d5cb48badd543522857221d1874a1626d484a1f
parentdbcf42527784f66f0bc7912d40e3f68a81ac42a3 (diff)
downloadgsoc2013-evolution-63145be20bb873e902f2054da8a902fdaadb7545.tar
gsoc2013-evolution-63145be20bb873e902f2054da8a902fdaadb7545.tar.gz
gsoc2013-evolution-63145be20bb873e902f2054da8a902fdaadb7545.tar.bz2
gsoc2013-evolution-63145be20bb873e902f2054da8a902fdaadb7545.tar.lz
gsoc2013-evolution-63145be20bb873e902f2054da8a902fdaadb7545.tar.xz
gsoc2013-evolution-63145be20bb873e902f2054da8a902fdaadb7545.tar.zst
gsoc2013-evolution-63145be20bb873e902f2054da8a902fdaadb7545.zip
Check the container is not NIL before trying to set thje prop.
2001-03-02 Not Zed <NotZed@Ximian.com> * mail-mt.c (set_stop): Check the container is not NIL before trying to set thje prop. svn path=/trunk/; revision=8449
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-mt.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 8aadc9dc3c..703f843a28 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-02 Not Zed <NotZed@Ximian.com>
+
+ * mail-mt.c (set_stop): Check the container is not NIL before
+ trying to set thje prop.
+
2001-03-01 Not Zed <NotZed@Ximian.com>
* folder-browser.c (folder_browser_search_menu_activated): Fixes
diff --git a/mail/mail-mt.c b/mail/mail-mt.c
index ee84b6649d..73cec2126d 100644
--- a/mail/mail-mt.c
+++ b/mail/mail-mt.c
@@ -983,6 +983,8 @@ set_stop(int sensitive)
control = BONOBO_CONTROL (e_iterator_get (it));
uic = bonobo_control_get_ui_component (control);
+ if (uic == CORBA_OBJECT_NIL || bonobo_ui_component_get_container(uic) == CORBA_OBJECT_NIL)
+ continue;
bonobo_ui_component_set_prop(uic, "/commands/MailStop", "sensitive", sensitive?"1":"0", NULL);
}