aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/calendar/ea-week-view.h
diff options
context:
space:
mode:
authorBoby Wang <boby.wang@sun.com>2006-04-28 17:27:52 +0800
committerLi Yuan <liyuan@src.gnome.org>2006-04-28 17:27:52 +0800
commit3871eb6425bbd343bb14c0442c38fb7ab3b4427c (patch)
treeb3d1cd9b97e8229923767cdb3e53a0a592b9de4a /a11y/calendar/ea-week-view.h
parentaeae812f66a1457e6844bed09c85299cd49a3381 (diff)
downloadgsoc2013-evolution-3871eb6425bbd343bb14c0442c38fb7ab3b4427c.tar
gsoc2013-evolution-3871eb6425bbd343bb14c0442c38fb7ab3b4427c.tar.gz
gsoc2013-evolution-3871eb6425bbd343bb14c0442c38fb7ab3b4427c.tar.bz2
gsoc2013-evolution-3871eb6425bbd343bb14c0442c38fb7ab3b4427c.tar.lz
gsoc2013-evolution-3871eb6425bbd343bb14c0442c38fb7ab3b4427c.tar.xz
gsoc2013-evolution-3871eb6425bbd343bb14c0442c38fb7ab3b4427c.tar.zst
gsoc2013-evolution-3871eb6425bbd343bb14c0442c38fb7ab3b4427c.zip
Fix for #339136
2006-04-28 Boby Wang <boby.wang@sun.com> Fix for #339136 * calendar/ea-cal-view-event.c: (ea_cal_view_event_get_type), (ea_cal_view_event_class_init), (ea_cal_view_event_init), (ea_cal_view_event_dispose), (ea_cal_view_event_get_index_in_parent), (ea_cal_view_event_ref_state_set): add necessary AtkStateSet to EaCalViewEvent. * calendar/ea-cal-view-event.h: add necessary AtkStateSet to EaCalViewEvent. * calendar/ea-calendar.c: (e_cal_view_a11y_init): replace e_cal_view_get_type with e_calendar_view_get_type * calendar/ea-day-view.c: (ea_day_view_get_type): replace e_cal_view_get_type with e_calendar_view_get_type * calendar/ea-week-view.c: * calendar/ea-week-view.h: change the base class of EaWeekView from GtkAccessible to EaCalView svn path=/trunk/; revision=31924
Diffstat (limited to 'a11y/calendar/ea-week-view.h')
-rw-r--r--a11y/calendar/ea-week-view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/a11y/calendar/ea-week-view.h b/a11y/calendar/ea-week-view.h
index f0ed117375..70237181e8 100644
--- a/a11y/calendar/ea-week-view.h
+++ b/a11y/calendar/ea-week-view.h
@@ -26,7 +26,7 @@
#ifndef __EA_WEEK_VIEW_H__
#define __EA_WEEK_VIEW_H__
-#include <gtk/gtkaccessible.h>
+#include "ea-cal-view.h"
#include "e-week-view.h"
#ifdef __cplusplus
@@ -45,14 +45,14 @@ typedef struct _EaWeekViewClass EaWeekViewClass;
struct _EaWeekView
{
- GtkAccessible parent;
+ EaCalView parent;
};
GType ea_week_view_get_type (void);
struct _EaWeekViewClass
{
- GtkAccessibleClass parent_class;
+ EaCalViewClass parent_class;
};
AtkObject* ea_week_view_new (GtkWidget *widget);