aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names-manager.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-07-08 16:29:07 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-07-08 16:29:07 +0800
commitbaad423775e9b0d94d560167286e46af677deb36 (patch)
tree32bdf0830fccdd0fcd7a498d538fafcd8b72ca5c /addressbook/gui/component/select-names/e-select-names-manager.c
parent2219b51a72c7c598777a64f1b39f329c12a7e9c6 (diff)
downloadgsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.tar
gsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.tar.gz
gsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.tar.bz2
gsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.tar.lz
gsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.tar.xz
gsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.tar.zst
gsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.zip
Wrap the ESelectNames stuff into a Bonobo interface, so that we can
call it from the message composer in evolution-mail. The Bonobo interface is physically implemented in evolution-addressbook. svn path=/trunk/; revision=3972
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-manager.c')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-manager.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c
index 51a4d889c1..77405dfe5c 100644
--- a/addressbook/gui/component/select-names/e-select-names-manager.c
+++ b/addressbook/gui/component/select-names/e-select-names-manager.c
@@ -182,8 +182,8 @@ e_select_names_manager_init (ESelectNamesManager *manager)
}
void e_select_names_manager_add_section (ESelectNamesManager *manager,
- char *id,
- char *title)
+ const char *id,
+ const char *title)
{
ESelectNamesManagerSection *section;
@@ -196,7 +196,7 @@ void e_select_names_manager_add_section (
}
GtkWidget *e_select_names_manager_create_entry (ESelectNamesManager *manager,
- char *id)
+ const char *id)
{
GtkWidget *entry;
ETextModel *model;
@@ -218,7 +218,7 @@ GtkWidget *e_select_names_manager_create_entry (
}
void e_select_names_manager_activate_dialog (ESelectNamesManager *manager,
- char *id)
+ const char *id)
{
ESelectNames *names = E_SELECT_NAMES(e_select_names_new());
EIterator *iterator;
@@ -232,7 +232,7 @@ void e_select_names_manager_activate_dialog (
/* Of type ECard */
EList *e_select_names_manager_get_cards (ESelectNamesManager *manager,
- char *id)
+ const char *id)
{
EIterator *iterator;
iterator = e_list_get_iterator(manager->sections);