diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 4 |
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); |