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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-06-24 00:27:53 UTC
  • mfrom: (1.1.80 upstream)
  • Revision ID: james.westby@ubuntu.com-20110624002753-2vh1vjavlya7r103
Tags: 3.1.2-0ubuntu1
* New upstream release 3.1.2.
* debian/control: adjust Build-Depends to match new upstream requirements for
  the new release.
* debian/control: update evolution and evolution-dev Depends to require the
  right versions of e-d-s (>= 3.1, << 3.2), and drop libunique-3.0-dev.
* debian/control,
  debian/evolution.install: remove groupwise-features from the plugin list,
  it's now split out into a separate module.
* debian/patches/03_lpi.patch: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 *
23
23
 */
24
24
 
 
25
#ifdef HAVE_CONFIG_H
 
26
#include <config.h>
 
27
#endif
 
28
 
25
29
#include "ea-week-view-cell.h"
26
30
#include "ea-week-view-main-item.h"
27
31
#include "a11y/ea-factory.h"
89
93
 
90
94
static void ea_week_view_cell_class_init (EaWeekViewCellClass *klass);
91
95
 
92
 
static G_CONST_RETURN gchar * ea_week_view_cell_get_name (AtkObject *accessible);
93
 
static G_CONST_RETURN gchar * ea_week_view_cell_get_description (AtkObject *accessible);
 
96
static const gchar * ea_week_view_cell_get_name (AtkObject *accessible);
 
97
static const gchar * ea_week_view_cell_get_description (AtkObject *accessible);
94
98
static AtkStateSet* ea_week_view_cell_ref_state_set (AtkObject *obj);
95
99
static AtkObject * ea_week_view_cell_get_parent (AtkObject *accessible);
96
100
static gint ea_week_view_cell_get_index_in_parent (AtkObject *accessible);
196
200
}
197
201
#endif
198
202
 
199
 
static G_CONST_RETURN gchar *
 
203
static const gchar *
200
204
ea_week_view_cell_get_name (AtkObject *accessible)
201
205
{
202
206
        AtkGObjectAccessible *atk_gobj;
242
246
        return accessible->name;
243
247
}
244
248
 
245
 
static G_CONST_RETURN gchar *
 
249
static const gchar *
246
250
ea_week_view_cell_get_description (AtkObject *accessible)
247
251
{
248
252
        return ea_week_view_cell_get_name (accessible);