diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-07-17 20:00:40 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-07-17 20:00:40 +0800 |
commit | ce6939b848eb228ec705aac4c8de6cfec16ecd10 (patch) | |
tree | 045f620b4d4c22352cba5568b697c688ed8c5a10 /calendar/gui/e-week-view.c | |
parent | e05eb7f89e180a734a07ee6576f56b8bfa84fc17 (diff) | |
download | gsoc2013-evolution-ce6939b848eb228ec705aac4c8de6cfec16ecd10.tar.gz gsoc2013-evolution-ce6939b848eb228ec705aac4c8de6cfec16ecd10.tar.zst gsoc2013-evolution-ce6939b848eb228ec705aac4c8de6cfec16ecd10.zip |
new base class for calendar views.
2003-07-17 Rodrigo Moya <rodrigo@ximian.com>
* gui/e-cal-view.[ch]: new base class for calendar views.
* gui/e-day-view.[ch]:
* gui/e-week-view.[ch]: base these classes on ECalView.
* gui/Makefile.am: added new files.
svn path=/trunk/; revision=21854
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r-- | calendar/gui/e-week-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index ec2bf212f1..120c494583 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -250,11 +250,11 @@ static void e_week_view_queue_layout (EWeekView *week_view); static void e_week_view_cancel_layout (EWeekView *week_view); static gboolean e_week_view_layout_timeout_cb (gpointer data); -static GtkTableClass *parent_class; +static ECalViewClass *parent_class; static GdkAtom clipboard_atom = GDK_NONE; E_MAKE_TYPE (e_week_view, "EWeekView", EWeekView, e_week_view_class_init, - e_week_view_init, GTK_TYPE_TABLE); + e_week_view_init, e_cal_view_get_type ()); static void e_week_view_class_init (EWeekViewClass *class) |