aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/calendar/ea-day-view-main-item.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/calendar/ea-day-view-main-item.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/calendar/ea-day-view-main-item.c')
-rw-r--r--a11y/calendar/ea-day-view-main-item.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/a11y/calendar/ea-day-view-main-item.c b/a11y/calendar/ea-day-view-main-item.c
index ea8b9ce2ee..4912e6ee7a 100644
--- a/a11y/calendar/ea-day-view-main-item.c
+++ b/a11y/calendar/ea-day-view-main-item.c
@@ -1085,8 +1085,6 @@ table_interface_get_row_description (AtkTable *table,
{
AtkGObjectAccessible *atk_gobj;
GObject *g_obj;
- EDayViewMainItem *main_item;
- EDayView *day_view;
EaDayViewMainItem* ea_main_item = EA_DAY_VIEW_MAIN_ITEM (table);
const gchar *description;
EaCellTable *cell_data;
@@ -1096,9 +1094,6 @@ table_interface_get_row_description (AtkTable *table,
if (!g_obj)
return NULL;
- main_item = E_DAY_VIEW_MAIN_ITEM (g_obj);
- day_view = main_item->day_view;
-
if (row < 0 || row >= 12 * 24)
return NULL;
cell_data = ea_day_view_main_item_get_cell_data (ea_main_item);