diff options
author | Chris Toshok <toshok@ximian.com> | 2004-04-10 01:30:39 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-04-10 01:30:39 +0800 |
commit | 65ea752b795545b15ecf68bd4835c27d05f58be1 (patch) | |
tree | 2af29176300d759d2f4d2aff36f023163fff5a2e /calendar/gui/e-select-names-editable.c | |
parent | e68394b0d08bd873b39829da8a54ba08177b76e8 (diff) | |
download | gsoc2013-evolution-65ea752b795545b15ecf68bd4835c27d05f58be1.tar.gz 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-select-names-editable.c')
-rw-r--r-- | calendar/gui/e-select-names-editable.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/calendar/gui/e-select-names-editable.c b/calendar/gui/e-select-names-editable.c index 40b980d3ad..a96cbb1c76 100644 --- a/calendar/gui/e-select-names-editable.c +++ b/calendar/gui/e-select-names-editable.c @@ -25,7 +25,7 @@ #include <gtk/gtkcelleditable.h> #include <bonobo/bonobo-exception.h> #include <bonobo/bonobo-widget.h> -#include <addressbook/util/eab-destination.h> +#include <addressbook/util/e-destination.h> #include "e-select-names-editable.h" #include "Evolution-Addressbook-SelectNames.h" @@ -191,17 +191,17 @@ e_select_names_editable_new () gchar * e_select_names_editable_get_address (ESelectNamesEditable *esne) { - EABDestination **dest; + EDestination **dest; gchar *dest_str; gchar *result = NULL; g_return_val_if_fail (E_SELECT_NAMES_EDITABLE (esne), NULL); dest_str = bonobo_pbclient_get_string (esne->priv->bag, "destinations", NULL); - dest = eab_destination_importv (dest_str); + dest = e_destination_importv (dest_str); if (dest) - result = g_strdup (eab_destination_get_email (*dest)); - eab_destination_freev (dest); + result = g_strdup (e_destination_get_email (*dest)); + e_destination_freev (dest); return result; } @@ -209,17 +209,17 @@ e_select_names_editable_get_address (ESelectNamesEditable *esne) gchar * e_select_names_editable_get_name (ESelectNamesEditable *esne) { - EABDestination **dest; + EDestination **dest; gchar *dest_str; gchar *result = NULL; g_return_val_if_fail (E_SELECT_NAMES_EDITABLE (esne), NULL); dest_str = bonobo_pbclient_get_string (esne->priv->bag, "destinations", NULL); - dest = eab_destination_importv (dest_str); + dest = e_destination_importv (dest_str); if (dest) - result = g_strdup (eab_destination_get_name (*dest)); - eab_destination_freev (dest); + result = g_strdup (e_destination_get_name (*dest)); + e_destination_freev (dest); return result; } |