~ubuntu-branches/ubuntu/precise/evolution/precise

« back to all changes in this revision

Viewing changes to calendar/gui/ea-day-view-cell.c

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-09-08 09:38:57 UTC
  • mfrom: (1.1.84 upstream)
  • Revision ID: package-import@ubuntu.com-20110908093857-6lfl04ke2ns3kx2o
Tags: 3.1.91-0ubuntu1
* New upstream release. (LP: #843769)
* debian/control: bump e-d-s Build-Depends to 3.1.91. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
}
70
70
 
71
71
EDayViewCell *
72
 
e_day_view_cell_new (EDayView *day_view, gint row, gint column)
 
72
e_day_view_cell_new (EDayView *day_view,
 
73
                     gint row,
 
74
                     gint column)
73
75
{
74
76
        GObject *object;
75
77
        EDayViewCell *cell;
95
97
 
96
98
static const gchar * ea_day_view_cell_get_name (AtkObject *accessible);
97
99
static const gchar * ea_day_view_cell_get_description (AtkObject *accessible);
98
 
static AtkStateSet* ea_day_view_cell_ref_state_set (AtkObject *obj);
 
100
static AtkStateSet * ea_day_view_cell_ref_state_set (AtkObject *obj);
99
101
static AtkObject * ea_day_view_cell_get_parent (AtkObject *accessible);
100
102
static gint ea_day_view_cell_get_index_in_parent (AtkObject *accessible);
101
103
 
168
170
        class->get_index_in_parent = ea_day_view_cell_get_index_in_parent;
169
171
}
170
172
 
171
 
AtkObject*
 
173
AtkObject *
172
174
ea_day_view_cell_new (GObject *obj)
173
175
{
174
176
        gpointer object;
240
242
        return ea_day_view_cell_get_name (accessible);
241
243
}
242
244
 
243
 
static AtkStateSet*
 
245
static AtkStateSet *
244
246
ea_day_view_cell_ref_state_set (AtkObject *obj)
245
247
{
246
248
  AtkStateSet *state_set;
326
328
 
327
329
static void
328
330
component_interface_get_extents (AtkComponent *component,
329
 
                                 gint *x, gint *y, gint *width, gint *height,
330
 
                                 AtkCoordType coord_type)
 
331
                                 gint *x,
 
332
                                 gint *y,
 
333
                                 gint *width,
 
334
                                 gint *height,
 
335
                                 AtkCoordType coord_type)
331
336
{
332
337
        GObject *g_obj;
333
338
        AtkObject *atk_obj;