aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-list-view.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-04-10 01:30:39 +0800
committerChris Toshok <toshok@src.gnome.org>2004-04-10 01:30:39 +0800
commit65ea752b795545b15ecf68bd4835c27d05f58be1 (patch)
tree2af29176300d759d2f4d2aff36f023163fff5a2e /calendar/gui/e-meeting-list-view.c
parente68394b0d08bd873b39829da8a54ba08177b76e8 (diff)
downloadgsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.tar
gsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.tar.gz
gsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.tar.bz2
gsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.tar.lz
gsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.tar.xz
gsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.tar.zst
gsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.zip
EABDestination -> EDestination. (e_delegate_dialog_get_delegate): same.
2004-04-09 Chris Toshok <toshok@ximian.com> * gui/dialogs/e-delegate-dialog.c (e_delegate_dialog_construct): EABDestination -> EDestination. (e_delegate_dialog_get_delegate): same. (e_delegate_dialog_get_delegate_name): same. * gui/dialogs/alarm-options.c (alarm_to_malarm_widgets): EABDestination -> EDestination. (malarm_widgets_to_alarm): same. * gui/e-select-names-editable.c (e_select_names_editable_get_address): EABDestination -> EDestination. (e_select_names_editable_get_name): same. * gui/e-meeting-list-view.c (process_section): EABDestination -> EDestination. (select_names_ok_cb): same. svn path=/trunk/; revision=25391
Diffstat (limited to 'calendar/gui/e-meeting-list-view.c')
-rw-r--r--calendar/gui/e-meeting-list-view.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/calendar/gui/e-meeting-list-view.c b/calendar/gui/e-meeting-list-view.c
index 55d73a7f80..a4e8850eea 100644
--- a/calendar/gui/e-meeting-list-view.c
+++ b/calendar/gui/e-meeting-list-view.c
@@ -43,7 +43,7 @@
#include "calendar-config.h"
#include "e-meeting-list-view.h"
#include <misc/e-cell-renderer-combo.h>
-#include <addressbook/util/eab-destination.h>
+#include <addressbook/util/e-destination.h>
#include "e-select-names-renderer.h"
#define SELECT_NAMES_OAFID "OAFIID:GNOME_Evolution_Addressbook_SelectNames:" BASE_VERSION
@@ -328,7 +328,7 @@ e_meeting_list_view_edit (EMeetingListView *emlv, EMeetingAttendee *attendee)
}
static void
-process_section (EMeetingListView *view, EABDestination **cards, icalparameter_role role)
+process_section (EMeetingListView *view, EDestination **cards, icalparameter_role role)
{
EMeetingListViewPrivate *priv;
int i;
@@ -338,7 +338,7 @@ process_section (EMeetingListView *view, EABDestination **cards, icalparameter_r
const char *name, *attendee = NULL;
char *attr = NULL;
- name = eab_destination_get_name (cards[i]);
+ name = e_destination_get_name (cards[i]);
/* Get the field as attendee from the backend */
if (e_cal_get_ldap_attribute (e_meeting_store_get_e_cal (priv->store),
@@ -348,8 +348,8 @@ process_section (EMeetingListView *view, EABDestination **cards, icalparameter_r
EContact *contact;
/* FIXME: this does not work, have to use first
- eab_destination_use_contact() */
- contact = eab_destination_get_contact (cards[i]);
+ e_destination_use_contact() */
+ contact = e_destination_get_contact (cards[i]);
if (contact) {
attendee = e_contact_get (contact, E_CONTACT_FREEBUSY_URL);
if (!attendee)
@@ -360,7 +360,7 @@ process_section (EMeetingListView *view, EABDestination **cards, icalparameter_r
/* If we couldn't get the attendee prior, get the email address as the default */
if (attendee == NULL || *attendee == '\0') {
- attendee = eab_destination_get_email (cards[i]);
+ attendee = e_destination_get_email (cards[i]);
}
if (attendee == NULL || *attendee == '\0')
@@ -385,7 +385,7 @@ select_names_ok_cb (BonoboListener *listener, const char *event_name, const CORB
int i;
for (i = 0; sections[i] != NULL; i++) {
- EABDestination **destv;
+ EDestination **destv;
char *string = NULL;
Bonobo_Control corba_control = GNOME_Evolution_Addressbook_SelectNames_getEntryBySection
(view->priv->corba_select_names, sections[i], ev);
@@ -393,7 +393,7 @@ select_names_ok_cb (BonoboListener *listener, const char *event_name, const CORB
bonobo_widget_get_property (BONOBO_WIDGET (control_widget), "destinations",
TC_CORBA_string, &string, NULL);
- destv = eab_destination_importv (string);
+ destv = e_destination_importv (string);
if (destv) {
process_section (view, destv, roles[i]);
g_free (destv);