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

« back to all changes in this revision

Viewing changes to widgets/table/gal-a11y-e-cell-vbox.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
25
26
#include <config.h>
 
27
#endif
26
28
 
27
29
#include <atk/atk.h>
28
30
 
138
140
                        ecvv->subcell_views[i], ecvv->model_cols[i],
139
141
                        gaec->view_col, gaec->row);
140
142
                if ( 0 <= y && y <= subcell_height) {
141
 
                        return ecv_ref_child ((AtkObject *)component, i);
 
143
                        return ecv_ref_child ((AtkObject *) component, i);
142
144
                } else
143
145
                        y -= subcell_height;
144
146
        }
218
220
 
219
221
        a11y = g_object_new (gal_a11y_e_cell_vbox_get_type (), NULL);
220
222
 
221
 
        gal_a11y_e_cell_construct (a11y, item, cell_view, parent, model_col, view_col, row);
 
223
        gal_a11y_e_cell_construct (
 
224
                a11y, item, cell_view, parent, model_col, view_col, row);
222
225
 
223
226
        gaec = GAL_A11Y_E_CELL (a11y);
224
227
        gaev = GAL_A11Y_E_CELL_VBOX (a11y);