diff options
Diffstat (limited to 'a11y/addressbook')
-rw-r--r-- | a11y/addressbook/ea-addressbook-view.c | 4 | ||||
-rw-r--r-- | a11y/addressbook/ea-addressbook-view.h | 2 | ||||
-rw-r--r-- | a11y/addressbook/ea-minicard-view.c | 46 | ||||
-rw-r--r-- | a11y/addressbook/ea-minicard-view.h | 2 | ||||
-rw-r--r-- | a11y/addressbook/ea-minicard.c | 20 | ||||
-rw-r--r-- | a11y/addressbook/ea-minicard.h | 4 |
6 files changed, 39 insertions, 39 deletions
diff --git a/a11y/addressbook/ea-addressbook-view.c b/a11y/addressbook/ea-addressbook-view.c index 67b4c6318d..62981ebca1 100644 --- a/a11y/addressbook/ea-addressbook-view.c +++ b/a11y/addressbook/ea-addressbook-view.c @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * ea-addressbook-view.c * Copyright (C) 2000 Ximian, Inc. * @@ -103,7 +103,7 @@ ea_ab_view_get_description (AtkObject *accessible) return _("evolution addressbook"); } -AtkObject* +AtkObject* ea_ab_view_new (GObject *obj) { GObject *object; diff --git a/a11y/addressbook/ea-addressbook-view.h b/a11y/addressbook/ea-addressbook-view.h index d1498d98c1..2fe13ca2c2 100644 --- a/a11y/addressbook/ea-addressbook-view.h +++ b/a11y/addressbook/ea-addressbook-view.h @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * ea-addressbook_view.h * Copyright (C) 2000 Ximian, Inc. * diff --git a/a11y/addressbook/ea-minicard-view.c b/a11y/addressbook/ea-minicard-view.c index c6b7d4b029..52f923eb24 100644 --- a/a11y/addressbook/ea-minicard-view.c +++ b/a11y/addressbook/ea-minicard-view.c @@ -1,8 +1,8 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * ea-minicard-view.c * Copyright (C) 2000 Ximian, Inc. - * Author: Leon Zhang < leon.zhang@sun.com> + * Author: Leon Zhang < leon.zhang@sun.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -90,13 +90,13 @@ ea_minicard_view_get_type (void) (GInterfaceFinalizeFunc) NULL, NULL }; - + static const GInterfaceInfo atk_action_info = { (GInterfaceInitFunc) atk_action_interface_init, (GInterfaceFinalizeFunc) NULL, NULL }; - + /* * Figure out the size of the class and instance * we are run-time deriving from (GailWidget, in this case) */ @@ -115,7 +115,7 @@ ea_minicard_view_get_type (void) &atk_selection_info); g_type_add_interface_static (type, ATK_TYPE_ACTION, &atk_action_info); - + } return type; @@ -150,7 +150,7 @@ ea_minicard_view_get_name (AtkObject *accessible) if (!reflow) return NULL; - + /* Get the current name of minicard view*/ card_view = E_MINICARD_VIEW (reflow); g_object_get (card_view->adapter, "book", &book, NULL); @@ -179,7 +179,7 @@ ea_minicard_view_get_description (AtkObject *accessible) return _("evolution addressbook"); } -AtkObject* +AtkObject* ea_minicard_view_new (GObject *obj) { GObject *object; @@ -197,18 +197,18 @@ static gint ea_minicard_view_get_n_children (AtkObject *accessible) { EReflow *reflow; - + gint child_num = 0; - + g_return_val_if_fail (EA_IS_MINICARD_VIEW (accessible), -1); - + reflow = E_REFLOW (atk_gobject_accessible_get_object (ATK_GOBJECT_ACCESSIBLE(accessible))); if (!reflow) return -1; - + child_num = reflow->count; - + return child_num; } @@ -216,7 +216,7 @@ static AtkStateSet *ea_minicard_view_ref_state_set (AtkObject *obj) { AtkStateSet *state_set = NULL; GObject *gobj = NULL; - + state_set = ATK_OBJECT_CLASS (parent_class)->ref_state_set (obj); if( !state_set ) state_set = atk_state_set_new (); @@ -224,7 +224,7 @@ static AtkStateSet *ea_minicard_view_ref_state_set (AtkObject *obj) gobj = atk_gobject_accessible_get_object (ATK_GOBJECT_ACCESSIBLE (obj)); if( !gobj ) return state_set; - + atk_state_set_add_state (state_set, ATK_STATE_ENABLED); atk_state_set_add_state (state_set, ATK_STATE_SENSITIVE); atk_state_set_add_state (state_set, ATK_STATE_SHOWING); @@ -241,11 +241,11 @@ ea_minicard_view_ref_child (AtkObject *accessible, gint index) EMinicard *card = NULL; g_return_val_if_fail (EA_IS_MINICARD_VIEW (accessible), NULL); - + child_num = atk_object_get_n_accessible_children (accessible); if (child_num <= 0 || index < 0 || index >= child_num) return NULL; - + reflow = E_REFLOW (atk_gobject_accessible_get_object (ATK_GOBJECT_ACCESSIBLE (accessible))); if (!reflow) return NULL; @@ -282,13 +282,13 @@ selection_interface_add_selection (AtkSelection *selection, gint i) { AtkGObjectAccessible *atk_gobj= NULL; EReflow *reflow = NULL; - + atk_gobj = ATK_GOBJECT_ACCESSIBLE (selection); reflow = E_REFLOW (atk_gobject_accessible_get_object (atk_gobj)); - + if (!reflow) return FALSE; - + selection_interface_clear_selection (selection); e_selection_model_select_single_row (reflow->selection, i); @@ -306,9 +306,9 @@ selection_interface_clear_selection (AtkSelection *selection) if( !reflow ) return FALSE; - + e_selection_model_clear (reflow->selection); - + return TRUE; } @@ -329,7 +329,7 @@ selection_interface_get_selection_count (AtkSelection *selection) if (!reflow ) return FALSE; - + return e_selection_model_selected_count (reflow->selection); } @@ -417,4 +417,4 @@ atk_action_interface_get_name (AtkAction *iface, gint i) return action_name[i]; } - + diff --git a/a11y/addressbook/ea-minicard-view.h b/a11y/addressbook/ea-minicard-view.h index c0046e0e61..01f73c1494 100644 --- a/a11y/addressbook/ea-minicard-view.h +++ b/a11y/addressbook/ea-minicard-view.h @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * ea-minicard-view.h * Copyright (C) 2000 Ximian, Inc. * Author: Leon Zhang <leon.zhang@sun.com> Sun Microsystem Inc., 2003 diff --git a/a11y/addressbook/ea-minicard.c b/a11y/addressbook/ea-minicard.c index 8d4e41082b..888b7423de 100644 --- a/a11y/addressbook/ea-minicard.c +++ b/a11y/addressbook/ea-minicard.c @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * ea-minicard.c * Copyright (C) 2000 Ximian, Inc. * @@ -79,7 +79,7 @@ ea_minicard_get_type (void) /* * Figure out the size of the class and instance - * we are run-time deriving from (GailWidget, in this case) + * we are run-time deriving from (GailWidget, in this case) */ factory = atk_registry_get_factory (atk_get_default_registry (), @@ -93,7 +93,7 @@ ea_minicard_get_type (void) type = g_type_register_static ( derived_atk_type, "EaMinicard", &tinfo, 0); g_type_add_interface_static (type, ATK_TYPE_ACTION, - &atk_action_info); + &atk_action_info); } return type; @@ -114,14 +114,14 @@ ea_minicard_class_init (EaMinicardClass *klass) } /* - * we access the main content of current minicard, including + * we access the main content of current minicard, including * header text, label(field, field name) */ static G_CONST_RETURN gchar* ea_minicard_get_name (AtkObject *accessible) { #define BUFFERSIZE 500 - + static gchar name[BUFFERSIZE]; GString *new_str = g_string_new (NULL); gchar *string; @@ -130,7 +130,7 @@ ea_minicard_get_name (AtkObject *accessible) g_return_val_if_fail (EA_IS_MINICARD(accessible), NULL); memset (name, '\0', BUFFERSIZE); - card = E_MINICARD(atk_gobject_accessible_get_object + card = E_MINICARD(atk_gobject_accessible_get_object (ATK_GOBJECT_ACCESSIBLE(accessible))); if (!card) return NULL; @@ -140,7 +140,7 @@ ea_minicard_get_name (AtkObject *accessible) if (e_contact_get (card->contact, E_CONTACT_IS_LIST)) g_string_append (new_str, _("Contact List: ")); else g_string_append (new_str, _("Contact: ")); - + /* get header of current card */ g_string_append (new_str, string); g_free (string); @@ -168,7 +168,7 @@ ea_minicard_get_description (AtkObject *accessible) return _("evolution minicard"); } -AtkObject* +AtkObject* ea_minicard_new (GObject *obj) { GObject *object; @@ -267,7 +267,7 @@ atk_action_interface_get_name (AtkAction *iface, gint i) { if( i >= G_N_ELEMENTS (action_name) || i < 0) return NULL; - + return action_name[i]; } - + diff --git a/a11y/addressbook/ea-minicard.h b/a11y/addressbook/ea-minicard.h index bb184762e4..e745a6acff 100644 --- a/a11y/addressbook/ea-minicard.h +++ b/a11y/addressbook/ea-minicard.h @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * ea-minicard.h * Copyright (C) 2000 Ximian, Inc. * @@ -16,7 +16,7 @@ * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. - * + * * Author: Leon Zhang <leon.zhang@sun.com> Sun Microsystem Inc., 2003 */ #ifndef __EA_MINICARD_H__ |