diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 035a165463..8477ebe5f7 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2004-07-06 Rodrigo Moya <rodrigo@novell.com> + + * gui/gnome-cal.c (gnome_calendar_init): setup the widgets before + the configuration. + 2004-07-06 JP Rosevear <jpr@novell.com> Fixes #60645 diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 87f8d280d3..9323436db5 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1290,8 +1290,8 @@ gnome_calendar_init (GnomeCalendar *gcal) priv->current_view_type = GNOME_CAL_DAY_VIEW; priv->range_selected = FALSE; - setup_config (gcal); setup_widgets (gcal); + setup_config (gcal); priv->dn_queries = NULL; priv->sexp = g_strdup ("#t"); /* Match all */ |