diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-15 06:04:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-15 06:04:21 +0800 |
commit | 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch) | |
tree | 2e1e96f33404781354c422a7e9beaf458ebeb655 /a11y/e-table/gal-a11y-e-cell-popup.c | |
parent | 7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff) | |
download | gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip |
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
** Remove trailing whitespace from source code.
svn path=/trunk/; revision=34537
Diffstat (limited to 'a11y/e-table/gal-a11y-e-cell-popup.c')
-rw-r--r-- | a11y/e-table/gal-a11y-e-cell-popup.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/a11y/e-table/gal-a11y-e-cell-popup.c b/a11y/e-table/gal-a11y-e-cell-popup.c index 64e11bcf98..c0110e9dba 100644 --- a/a11y/e-table/gal-a11y-e-cell-popup.c +++ b/a11y/e-table/gal-a11y-e-cell-popup.c @@ -43,11 +43,11 @@ static void popup_cell_action (GalA11yECell *cell); /** * gal_a11y_e_cell_popup_get_type: - * @void: - * + * @void: + * * Registers the &GalA11yECellPopup class if necessary, and returns the type ID * associated to it. - * + * * Return value: The type ID of the &GalA11yECellPopup class. **/ GType @@ -99,7 +99,7 @@ gal_a11y_e_cell_popup_new (ETableItem *item, if (popupcell && popupcell->popup_cell_view) child_view = popupcell->popup_cell_view->child_view; - + if (child_view && child_view->ecell) { a11y = gal_a11y_e_cell_registry_get_object (NULL, item, @@ -120,7 +120,7 @@ gal_a11y_e_cell_popup_new (ETableItem *item, } g_return_val_if_fail (a11y != NULL, NULL); cell = GAL_A11Y_E_CELL(a11y); - gal_a11y_e_cell_add_action (cell, + gal_a11y_e_cell_add_action (cell, _("popup"), /* action name*/ _("popup a child"), /* action description */ "<Alt>Down", /* action keybinding */ @@ -136,12 +136,12 @@ popup_cell_action (GalA11yECell *cell) gint finished; GdkEvent event; - event.key.type = GDK_KEY_PRESS; + event.key.type = GDK_KEY_PRESS; event.key.window = GTK_LAYOUT(GNOME_CANVAS_ITEM(cell->item)->canvas)->bin_window;; event.key.send_event = TRUE; event.key.time = GDK_CURRENT_TIME; event.key.state = GDK_MOD1_MASK; event.key.keyval = GDK_Down; - + g_signal_emit_by_name (cell->item, "event", &event, &finished); } |