aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-03-05 06:28:56 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-03-05 06:28:56 +0800
commitf776394961a2cb9b19261ce01033933d6aba8ba1 (patch)
treed6d15b67fb4435895c23376d34216250e911b749
parent3911413b09fda188e7cf13a1d25422b0722e102f (diff)
downloadgsoc2013-evolution-f776394961a2cb9b19261ce01033933d6aba8ba1.tar
gsoc2013-evolution-f776394961a2cb9b19261ce01033933d6aba8ba1.tar.gz
gsoc2013-evolution-f776394961a2cb9b19261ce01033933d6aba8ba1.tar.bz2
gsoc2013-evolution-f776394961a2cb9b19261ce01033933d6aba8ba1.tar.lz
gsoc2013-evolution-f776394961a2cb9b19261ce01033933d6aba8ba1.tar.xz
gsoc2013-evolution-f776394961a2cb9b19261ce01033933d6aba8ba1.tar.zst
gsoc2013-evolution-f776394961a2cb9b19261ce01033933d6aba8ba1.zip
don't let the user change to an email organizer if the back end is not an
2003-03-04 JP Rosevear <jpr@ximian.com> * gui/dialogs/meeting-page.c (meeting_page_fill_widgets): don't let the user change to an email organizer if the back end is not an email addres svn path=/trunk/; revision=20162
-rw-r--r--calendar/ChangeLog12
-rw-r--r--calendar/gui/dialogs/meeting-page.c2
2 files changed, 11 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 579e46986b..e004f72629 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,18 +1,24 @@
-2003-02-11 JP Rosevear <jpr@ximian.com>
+2003-03-04 JP Rosevear <jpr@ximian.com>
+
+ * gui/dialogs/meeting-page.c (meeting_page_fill_widgets): don't
+ let the user change to an email organizer if the back end is not
+ an email addres
+
+2003-03-04 JP Rosevear <jpr@ximian.com>
Fixes #37881
* gui/e-meeting-model.c (process_section): if the attendee is the
empty string, try to get the email
-2003-02-18 JP Rosevear <jpr@ximian.com>
+2003-03-04 JP Rosevear <jpr@ximian.com>
* gui/calendar-offline-handler.c (backend_cal_opened_online): set
the backend to REMOTE mode when it opens
(backend_go_online): prepare to set calendar mode to REMOTE
(impl_goOnline): get all the local calendars and set to REMOTE
-2003-02-11 JP Rosevear <jpr@ximian.com>
+2003-03-04 JP Rosevear <jpr@ximian.com>
Fixes #37881
diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c
index a1ac45f39c..8687adb300 100644
--- a/calendar/gui/dialogs/meeting-page.c
+++ b/calendar/gui/dialogs/meeting-page.c
@@ -339,6 +339,8 @@ meeting_page_fill_widgets (CompEditorPage *page, CalComponent *comp)
gtk_widget_hide (priv->existing_organizer_btn);
e_meeting_model_etable_click_to_add (priv->model, TRUE);
} else {
+ if (cal_client_get_static_capability (page->client, "organizer-not-email-address"))
+ gtk_widget_hide (priv->existing_organizer_btn);
gtk_widget_hide (priv->invite);
e_meeting_model_etable_click_to_add (priv->model, FALSE);
}