aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-client
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2003-02-24 11:10:28 +0800
committerHans Petter <hansp@src.gnome.org>2003-02-24 11:10:28 +0800
commitba64403a4fef604cc3aaea6bff35b8275f30cfb1 (patch)
treeb70d44379ed65132f7881458b1859a6209386f00 /calendar/cal-client
parentee568bb74f887c3322f0729dedb81a1abdd6c025 (diff)
downloadgsoc2013-evolution-ba64403a4fef604cc3aaea6bff35b8275f30cfb1.tar
gsoc2013-evolution-ba64403a4fef604cc3aaea6bff35b8275f30cfb1.tar.gz
gsoc2013-evolution-ba64403a4fef604cc3aaea6bff35b8275f30cfb1.tar.bz2
gsoc2013-evolution-ba64403a4fef604cc3aaea6bff35b8275f30cfb1.tar.lz
gsoc2013-evolution-ba64403a4fef604cc3aaea6bff35b8275f30cfb1.tar.xz
gsoc2013-evolution-ba64403a4fef604cc3aaea6bff35b8275f30cfb1.tar.zst
gsoc2013-evolution-ba64403a4fef604cc3aaea6bff35b8275f30cfb1.zip
Don't warn if calendar isn't loaded... Doesn't seem to hurt, but this
2003-02-23 Hans Petter Jansson <hpj@ximian.com> * cal-client/cal-client.c (cal_client_is_read_only): Don't warn if calendar isn't loaded... Doesn't seem to hurt, but this should probably be investigated further. * gui/dialogs/comp-editor-util.c (comp_editor_contacts_to_widget): If we have no contacts, don't bother trying to set them in the widget. Used to pass a NULL list, which would lead to much anxiety in callees. * gui/dialogs/meeting-page.c (meeting_page_fill_widgets): If we have no potential organizers, emit a sensible warning. * gui/dialogs/task-page.c (init_widgets): Don't try to connect to the "changed" signal of the GtkTextView -- we listen to the GtkTextBuffer now. svn path=/trunk/; revision=20019
Diffstat (limited to 'calendar/cal-client')
-rw-r--r--calendar/cal-client/cal-client.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/cal-client/cal-client.c b/calendar/cal-client/cal-client.c
index fd235e1d3c..89579a34a0 100644
--- a/calendar/cal-client/cal-client.c
+++ b/calendar/cal-client/cal-client.c
@@ -1128,7 +1128,8 @@ cal_client_is_read_only (CalClient *client)
priv = client->priv;
- g_return_val_if_fail (priv->load_state == CAL_CLIENT_LOAD_LOADED, FALSE);
+ if (priv->load_state != CAL_CLIENT_LOAD_LOADED)
+ return FALSE;
CORBA_exception_init (&ev);
read_only = GNOME_Evolution_Calendar_Cal_isReadOnly (priv->cal, &ev);