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/calendar/ea-cal-view-event.c | |
parent | 7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff) | |
download | gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.bz2 gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.lz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.xz 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/calendar/ea-cal-view-event.c')
-rw-r--r-- | a11y/calendar/ea-cal-view-event.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/a11y/calendar/ea-cal-view-event.c b/a11y/calendar/ea-cal-view-event.c index 9f7e694597..a85ce348c6 100644 --- a/a11y/calendar/ea-cal-view-event.c +++ b/a11y/calendar/ea-cal-view-event.c @@ -114,7 +114,7 @@ ea_cal_view_event_get_type (void) g_type_add_interface_static (type, ATK_TYPE_ACTION, &atk_action_info); - + } return type; @@ -164,7 +164,7 @@ static void ea_cal_view_finalize (GObject *object) } #endif -AtkObject* +AtkObject* ea_cal_view_event_new (GObject *obj) { AtkObject *atk_obj = NULL; @@ -262,21 +262,21 @@ ea_cal_view_event_get_name (AtkObject *accessible) alarm_string = recur_string = meeting_string = ""; if (event && event->comp_data) { - if (e_cal_util_component_has_alarms (event->comp_data->icalcomp)) + if (e_cal_util_component_has_alarms (event->comp_data->icalcomp)) alarm_string = _("It has alarms."); - if (e_cal_util_component_has_recurrences (event->comp_data->icalcomp)) + if (e_cal_util_component_has_recurrences (event->comp_data->icalcomp)) recur_string = _("It has recurrences."); - if (e_cal_util_component_has_organizer (event->comp_data->icalcomp)) + if (e_cal_util_component_has_organizer (event->comp_data->icalcomp)) meeting_string = _("It is a meeting."); - + } summary = icalcomponent_get_summary (event->comp_data->icalcomp); - if (summary) + if (summary) summary_string = g_strdup_printf (_("Calendar Event: Summary is %s."), summary); - else + else summary_string = g_strdup (_("Calendar Event: It has no summary.")); name_string = g_strdup_printf ("%s %s %s %s", summary_string, alarm_string, recur_string, meeting_string); @@ -410,7 +410,7 @@ ea_cal_view_event_ref_state_set (AtkObject *accessible) /* Atk Component Interface */ -static void +static void atk_component_interface_init (AtkComponentIface *iface) { g_return_if_fail (iface != NULL); @@ -418,7 +418,7 @@ atk_component_interface_init (AtkComponentIface *iface) iface->get_extents = ea_cal_view_get_extents; } -static void +static void ea_cal_view_get_extents (AtkComponent *component, gint *x, gint *y, |