aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-02-09 12:57:51 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-02-09 12:57:51 +0800
commite0378bff334b5d828af230ef8a939fbe9f81d98d (patch)
tree94eacc1c5476a0fc8de1b178135a6c62bdb17bbc /calendar
parentafb9d6b1aba70b330a03507cb5e2e13e393bc4c5 (diff)
downloadgsoc2013-evolution-e0378bff334b5d828af230ef8a939fbe9f81d98d.tar
gsoc2013-evolution-e0378bff334b5d828af230ef8a939fbe9f81d98d.tar.gz
gsoc2013-evolution-e0378bff334b5d828af230ef8a939fbe9f81d98d.tar.bz2
gsoc2013-evolution-e0378bff334b5d828af230ef8a939fbe9f81d98d.tar.lz
gsoc2013-evolution-e0378bff334b5d828af230ef8a939fbe9f81d98d.tar.xz
gsoc2013-evolution-e0378bff334b5d828af230ef8a939fbe9f81d98d.tar.zst
gsoc2013-evolution-e0378bff334b5d828af230ef8a939fbe9f81d98d.zip
fixes #330465
svn path=/trunk/; revision=31457
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/event-page.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 94bcd9a8eb..d00acca64b 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-09 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #330465
+ * gui/dialogs/event-page.c: (event_page_fill_widgets): Fixes the build
+ break.
+
2006-02-08 Tor Lillqvist <tml@novell.com>
* gui/dialogs/task-editor.c (task_editor_init): Construct the
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c
index 3f95a27929..a9444d8dda 100644
--- a/calendar/gui/dialogs/event-page.c
+++ b/calendar/gui/dialogs/event-page.c
@@ -1053,8 +1053,8 @@ event_page_fill_widgets (CompEditorPage *page, ECalComponent *comp)
if (!priv->user_org) {
list = g_list_append (list, string);
- gtk_combo_set_popdown_strings (GTK_ENTRY (priv->organizer)->entry, list);
- gtk_entry_set_editable (GTK_ENTRY (priv->organizer), FALSE);
+ gtk_combo_set_popdown_strings (GTK_COMBO (priv->organizer), list);
+ gtk_entry_set_editable (GTK_ENTRY (GTK_COMBO (priv->organizer)->entry), FALSE);
}
g_free (string);