aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/gal-a11y-e-cell-popup.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-11-10 11:40:00 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-11-11 04:54:43 +0800
commit2c4ae5e7685c462f8d464448e4617b8dea029e72 (patch)
treec34f0cbb7c500ff70f10fce846631b0a948b341c /widgets/table/gal-a11y-e-cell-popup.c
parent583da46b8caf4b2a8b548b03c38fe0e84164abfb (diff)
downloadgsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.gz
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.bz2
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.lz
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.xz
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.zst
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'widgets/table/gal-a11y-e-cell-popup.c')
-rw-r--r--widgets/table/gal-a11y-e-cell-popup.c43
1 files changed, 23 insertions, 20 deletions
diff --git a/widgets/table/gal-a11y-e-cell-popup.c b/widgets/table/gal-a11y-e-cell-popup.c
index b1232a6b84..1c97ee3198 100644
--- a/widgets/table/gal-a11y-e-cell-popup.c
+++ b/widgets/table/gal-a11y-e-cell-popup.c
@@ -100,31 +100,34 @@ gal_a11y_e_cell_popup_new (ETableItem *item,
child_view = popupcell->popup_cell_view->child_view;
if (child_view && child_view->ecell) {
- a11y = gal_a11y_e_cell_registry_get_object (NULL,
- item,
- child_view,
- parent,
- model_col,
- view_col,
- row);
+ a11y = gal_a11y_e_cell_registry_get_object (
+ NULL,
+ item,
+ child_view,
+ parent,
+ model_col,
+ view_col,
+ row);
} else {
a11y = g_object_new (GAL_A11Y_TYPE_E_CELL_POPUP, NULL);
- gal_a11y_e_cell_construct (a11y,
- item,
- cell_view,
- parent,
- model_col,
- view_col,
- row);
+ gal_a11y_e_cell_construct (
+ a11y,
+ item,
+ cell_view,
+ parent,
+ model_col,
+ view_col,
+ row);
}
g_return_val_if_fail (a11y != NULL, NULL);
cell = GAL_A11Y_E_CELL (a11y);
- gal_a11y_e_cell_add_action (cell,
- "popup",
- /* Translators: description of a "popup" action */
- _("popup a child"),
- "<Alt>Down", /* action keybinding */
- popup_cell_action);
+ gal_a11y_e_cell_add_action (
+ cell,
+ "popup",
+ /* Translators: description of a "popup" action */
+ _("popup a child"),
+ "<Alt>Down", /* action keybinding */
+ popup_cell_action);
a11y->role = ATK_ROLE_TABLE_CELL;
return a11y;