diff options
Diffstat (limited to 'calendar/gncal-week-view.h')
-rw-r--r-- | calendar/gncal-week-view.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gncal-week-view.h b/calendar/gncal-week-view.h index 16dfa40eb0..1514890504 100644 --- a/calendar/gncal-week-view.h +++ b/calendar/gncal-week-view.h @@ -27,7 +27,7 @@ typedef struct _GncalWeekView GncalWeekView; typedef struct _GncalWeekViewClass GncalWeekViewClass; struct _GncalWeekView { - GtkTable table; + GtkVBox box; GnomeCalendar *calendar; /* the calendar we are associated to */ @@ -35,10 +35,11 @@ struct _GncalWeekView { GncalDayView *days[7]; /* the day view widgets */ GtkCalendar *gtk_calendar; /* At least for now; see the FIXME comments in the .c file */ + GtkWidget *label; }; struct _GncalWeekViewClass { - GtkTableClass parent_class; + GtkVBoxClass parent_class; }; |