diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-31 15:41:26 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-31 15:41:26 +0800 |
commit | a7ebde1a817510ce5fb477cc665a51625210e168 (patch) | |
tree | 6cf20c9026730a407203836d069b6702f73d02cb /calendar | |
parent | 6ef5fe427fdd7e1ca4f4ae1d2604b044bd3c59dd (diff) | |
download | gsoc2013-evolution-a7ebde1a817510ce5fb477cc665a51625210e168.tar.gz gsoc2013-evolution-a7ebde1a817510ce5fb477cc665a51625210e168.tar.zst gsoc2013-evolution-a7ebde1a817510ce5fb477cc665a51625210e168.zip |
show the alarm list dialog.
svn path=/trunk/; revision=31383
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/cal-prefs-dialog.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 72ee080c00..775b6aabf9 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2006-01-31 Chenthill Palanisamy <pchenthill@novell.com> + + * gui/dialogs/cal-prefs-dialog.c: (show_alarms_config): + Show the widget. + 2006-01-30 Harish Krishnaswamy <kharish@novell.com> * gui/e-week-view.c : Reverting Chakravarthi's diff --git a/calendar/gui/dialogs/cal-prefs-dialog.c b/calendar/gui/dialogs/cal-prefs-dialog.c index a797077849..e2bebb31a8 100644 --- a/calendar/gui/dialogs/cal-prefs-dialog.c +++ b/calendar/gui/dialogs/cal-prefs-dialog.c @@ -468,6 +468,7 @@ show_alarms_config (CalendarPrefsDialog *prefs) prefs->alarm_list_widget = e_source_selector_new (prefs->alarms_list); atk_object_set_name (gtk_widget_get_accessible (prefs->alarm_list_widget), _("Selected Calendars for Alarms")); gtk_container_add (GTK_CONTAINER (prefs->scrolled_window), prefs->alarm_list_widget); + gtk_widget_show (prefs->alarm_list_widget); initialize_selection (prefs->alarm_list_widget, prefs->alarms_list); } |