diff options
author | JP Rosevear <jpr@ximian.com> | 2003-12-16 03:45:13 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-12-16 03:45:13 +0800 |
commit | 1b74b936a5be7e35da23fa1f7edd3aa291b29875 (patch) | |
tree | 00f26ea788796bda816317e04bc9022df3a93091 /calendar/gui | |
parent | 98f23d5a1c5b25b2dabc0b3386cd8cac98b31fdc (diff) | |
download | gsoc2013-evolution-1b74b936a5be7e35da23fa1f7edd3aa291b29875.tar.gz gsoc2013-evolution-1b74b936a5be7e35da23fa1f7edd3aa291b29875.tar.zst gsoc2013-evolution-1b74b936a5be7e35da23fa1f7edd3aa291b29875.zip |
set the calendar for the day view
2003-12-15 JP Rosevear <jpr@ximian.com>
* gui/gnome-cal.c (setup_widgets): set the calendar for the day
view
svn path=/trunk/; revision=23943
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/gnome-cal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 773c367a94..f133b057af 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -979,9 +979,9 @@ setup_widgets (GnomeCalendar *gcal) /* The Day View. */ priv->day_view = e_day_view_new (); + e_calendar_view_set_calendar (E_CALENDAR_VIEW (priv->day_view), gcal); g_signal_connect (priv->day_view, "selection_changed", G_CALLBACK (view_selection_changed_cb), gcal); - connect_day_view_focus (gcal, E_DAY_VIEW (priv->day_view)); /* The Work Week View. */ |