diff options
author | JP Rosevear <jpr@novell.com> | 2005-02-24 02:06:58 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-02-24 02:06:58 +0800 |
commit | 26e97fbbf11d8282e8dd6a09b87b44c02f9290a7 (patch) | |
tree | faf1b3e3dfa01a17d3f9e938e882f4398375d67e /calendar | |
parent | 7f58fb95cc3d234e6dc19cf013799f0f85c809ce (diff) | |
download | gsoc2013-evolution-26e97fbbf11d8282e8dd6a09b87b44c02f9290a7.tar gsoc2013-evolution-26e97fbbf11d8282e8dd6a09b87b44c02f9290a7.tar.gz gsoc2013-evolution-26e97fbbf11d8282e8dd6a09b87b44c02f9290a7.tar.bz2 gsoc2013-evolution-26e97fbbf11d8282e8dd6a09b87b44c02f9290a7.tar.lz gsoc2013-evolution-26e97fbbf11d8282e8dd6a09b87b44c02f9290a7.tar.xz gsoc2013-evolution-26e97fbbf11d8282e8dd6a09b87b44c02f9290a7.tar.zst gsoc2013-evolution-26e97fbbf11d8282e8dd6a09b87b44c02f9290a7.zip |
Fixes #70000
2005-02-23 JP Rosevear <jpr@novell.com>
Fixes #70000
* gui/gnome-cal.c (gnome_calendar_goto_today): set the view type
to day view
svn path=/trunk/; revision=28870
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 62a392a459..624347059f 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2005-02-23 JP Rosevear <jpr@novell.com> + + Fixes #70000 + + * gui/gnome-cal.c (gnome_calendar_goto_today): set the view type + to day view + 2005-02-23 Chenthill Palanisamy <pchenthill@novell.com> Fixes #72006 diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 3a85a4a89f..3eb5ced0b1 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1723,6 +1723,7 @@ gnome_calendar_goto_today (GnomeCalendar *gcal) g_return_if_fail (GNOME_IS_CALENDAR (gcal)); gnome_calendar_goto (gcal, time (NULL)); + gnome_calendar_set_view (gcal, GNOME_CAL_DAY_VIEW); focus_current_view (gcal); } |