aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/event-page.c
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-01-13 15:27:03 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-01-13 15:27:03 +0800
commita3af03a8c5c84a67712c27ec03574b49ee5d1b3b (patch)
treec9ee773c41d454f30aada1dc89f313ea8e8f07a1 /calendar/gui/dialogs/event-page.c
parent56815564a4a07de31c49288bae336d8103b81afe (diff)
downloadgsoc2013-evolution-a3af03a8c5c84a67712c27ec03574b49ee5d1b3b.tar
gsoc2013-evolution-a3af03a8c5c84a67712c27ec03574b49ee5d1b3b.tar.gz
gsoc2013-evolution-a3af03a8c5c84a67712c27ec03574b49ee5d1b3b.tar.bz2
gsoc2013-evolution-a3af03a8c5c84a67712c27ec03574b49ee5d1b3b.tar.lz
gsoc2013-evolution-a3af03a8c5c84a67712c27ec03574b49ee5d1b3b.tar.xz
gsoc2013-evolution-a3af03a8c5c84a67712c27ec03574b49ee5d1b3b.tar.zst
gsoc2013-evolution-a3af03a8c5c84a67712c27ec03574b49ee5d1b3b.zip
fixes #326735
svn path=/trunk/; revision=31154
Diffstat (limited to 'calendar/gui/dialogs/event-page.c')
-rw-r--r--calendar/gui/dialogs/event-page.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c
index 71d5d9d303..f475aae715 100644
--- a/calendar/gui/dialogs/event-page.c
+++ b/calendar/gui/dialogs/event-page.c
@@ -1021,6 +1021,8 @@ event_page_fill_widgets (CompEditorPage *page, ECalComponent *comp)
if (organizer.value != NULL) {
const gchar *strip = itip_strip_mailto (organizer.value);
gchar *string;
+ GList *list = NULL;
+
if (itip_organizer_is_user (comp, page->client)) {
if (e_cal_get_static_capability (
page->client,
@@ -1043,7 +1045,14 @@ event_page_fill_widgets (CompEditorPage *page, ECalComponent *comp)
else
string = g_strdup (strip);
+ if (!priv->user_org) {
+ list = g_list_append (list, string);
+ gtk_combo_set_popdown_strings (GTK_COMBO (priv->organizer), list);
+ gtk_entry_set_editable (GTK_COMBO (priv->organizer)->entry, FALSE);
+ }
+
g_free (string);
+ g_list_free (list);
priv->existing = TRUE;
}
} else {