diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-08 16:29:07 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-08 16:29:07 +0800 |
commit | baad423775e9b0d94d560167286e46af677deb36 (patch) | |
tree | 32bdf0830fccdd0fcd7a498d538fafcd8b72ca5c /addressbook/gui/component/select-names/e-select-names-manager.h | |
parent | 2219b51a72c7c598777a64f1b39f329c12a7e9c6 (diff) | |
download | gsoc2013-evolution-baad423775e9b0d94d560167286e46af677deb36.tar.gz 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.h')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-manager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-manager.h b/addressbook/gui/component/select-names/e-select-names-manager.h index 600644f01a..f2423e667b 100644 --- a/addressbook/gui/component/select-names/e-select-names-manager.h +++ b/addressbook/gui/component/select-names/e-select-names-manager.h @@ -35,16 +35,16 @@ struct _ESelectNamesManagerClass { ESelectNamesManager *e_select_names_manager_new (void); void e_select_names_manager_add_section (ESelectNamesManager *manager, - char *id, - char *title); + const char *id, + const char *title); GtkWidget *e_select_names_manager_create_entry (ESelectNamesManager *manager, - char *id); + const char *id); void e_select_names_manager_activate_dialog (ESelectNamesManager *manager, - char *id); + const char *id); /* Of type ECard */ EList *e_select_names_manager_get_cards (ESelectNamesManager *manager, - char *id); + const char *id); /* Standard Gtk function */ GtkType e_select_names_manager_get_type (void); |