diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2004-07-06 23:10:16 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-07-06 23:10:16 +0800 |
commit | 4e753555623781b5fab0f0606be71a4199e45474 (patch) | |
tree | 312e716369ec03111d740eea75211f2d5dff82a7 /calendar | |
parent | 63770f80502ab76fa294cb26ecd8eb8f38cba7c4 (diff) | |
download | gsoc2013-evolution-4e753555623781b5fab0f0606be71a4199e45474.tar.gz gsoc2013-evolution-4e753555623781b5fab0f0606be71a4199e45474.tar.zst gsoc2013-evolution-4e753555623781b5fab0f0606be71a4199e45474.zip |
setup the widgets before the configuration.
2004-07-06 Rodrigo Moya <rodrigo@novell.com>
* gui/gnome-cal.c (gnome_calendar_init): setup the widgets before
the configuration.
svn path=/trunk/; revision=26587
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 */ |