aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/e-text/gal-a11y-e-text.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2006-01-27 22:50:40 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2006-01-27 22:50:40 +0800
commit08d6eeabaa3402e349a2d88b1e344b5fc04815bc (patch)
tree7e50ef67042d5a5c9d0c61e566e4c88b301a8ef8 /a11y/e-text/gal-a11y-e-text.c
parent89c42a519884edd815dff38dd8530b7403f350d1 (diff)
downloadgsoc2013-evolution-08d6eeabaa3402e349a2d88b1e344b5fc04815bc.tar
gsoc2013-evolution-08d6eeabaa3402e349a2d88b1e344b5fc04815bc.tar.gz
gsoc2013-evolution-08d6eeabaa3402e349a2d88b1e344b5fc04815bc.tar.bz2
gsoc2013-evolution-08d6eeabaa3402e349a2d88b1e344b5fc04815bc.tar.lz
gsoc2013-evolution-08d6eeabaa3402e349a2d88b1e344b5fc04815bc.tar.xz
gsoc2013-evolution-08d6eeabaa3402e349a2d88b1e344b5fc04815bc.tar.zst
gsoc2013-evolution-08d6eeabaa3402e349a2d88b1e344b5fc04815bc.zip
reviewed by: Harish Krishnaswamy <kharish@novell.com>
2006-01-27 Kjartan Maraas <kmaraas@gnome.org> reviewed by: Harish Krishnaswamy <kharish@novell.com> * addressbook/ea-addressbook.c: Remove extra semi-colons. * calendar/ea-cal-view.c: (ea_cal_view_event_changed_cb), (ea_cal_view_event_added_cb), (action_interface_get_keybinding): Remove unused code and variables. * calendar/ea-day-view-main-item.c: (table_interface_get_row_description): More removal of unused bits * calendar/ea-week-view-main-item.c: (ea_week_view_main_item_get_row_at_index), (ea_week_view_main_item_get_column_at_index), (ea_week_view_main_item_get_row_label), (table_interface_get_n_columns), (table_interface_get_column_description): Same again. * e-table/gal-a11y-e-table-item.c: (gal_a11y_e_table_item_new): And again. * e-table/gal-a11y-e-table.c: (et_ref_child): Remove unused var. * e-table/gal-a11y-e-tree.c: (gal_a11y_e_tree_new): Again. * e-text/gal-a11y-e-text.c: (et_set_selection), (et_real_initialize): Same here too. * widgets/ea-calendar-item.c: (table_interface_get_column_description), (table_interface_get_row_description), (selection_interface_is_child_selected), (ea_calendar_item_get_cell_data): And here too. * widgets/ea-widgets.c: More redundant semi-colons. svn path=/trunk/; revision=31324
Diffstat (limited to 'a11y/e-text/gal-a11y-e-text.c')
-rw-r--r--a11y/e-text/gal-a11y-e-text.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/a11y/e-text/gal-a11y-e-text.c b/a11y/e-text/gal-a11y-e-text.c
index d23deef07d..1fd0a63476 100644
--- a/a11y/e-text/gal-a11y-e-text.c
+++ b/a11y/e-text/gal-a11y-e-text.c
@@ -766,14 +766,12 @@ et_set_selection (AtkText *text,
gint end_offset)
{
GObject *obj;
- EText *etext;
g_return_val_if_fail (ATK_IS_GOBJECT_ACCESSIBLE (text), FALSE);
obj = atk_gobject_accessible_get_object (ATK_GOBJECT_ACCESSIBLE (text));
if (obj == NULL)
return FALSE;
g_return_val_if_fail (E_IS_TEXT (obj), FALSE);
- etext = E_TEXT (obj);
if (selection_num == 0)
return et_add_selection (text, start_offset, end_offset);
return FALSE;
@@ -1015,7 +1013,6 @@ static void
et_real_initialize (AtkObject *obj,
gpointer data)
{
- GalA11yEText *a11y;
EText *etext;
ATK_OBJECT_CLASS (parent_class)->initialize (obj, data);
@@ -1023,7 +1020,6 @@ et_real_initialize (AtkObject *obj,
g_return_if_fail (GAL_A11Y_IS_E_TEXT (obj));
g_return_if_fail (E_IS_TEXT (data));
- a11y = GAL_A11Y_E_TEXT (obj);
etext = E_TEXT (data);
/* Set up signal callbacks */