aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-select-names-renderer.h
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2005-02-23 09:28:20 +0800
committerJP Rosevear <jpr@src.gnome.org>2005-02-23 09:28:20 +0800
commitb04efc12fa2842852129e25a6a64767c1bbd28f5 (patch)
treefd2ebf29cfc9f494408d65e42b1e2a8e071370bd /calendar/gui/e-select-names-renderer.h
parent7c9fac1f90c71124eda269acd2b87b7149f9002c (diff)
downloadgsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.gz
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.bz2
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.lz
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.xz
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.tar.zst
gsoc2013-evolution-b04efc12fa2842852129e25a6a64767c1bbd28f5.zip
Fixes #63866, #67714, #62089, #47747, #61495
2005-02-21 JP Rosevear <jpr@novell.com> Fixes #63866, #67714, #62089, #47747, #61495 * gui/e-select-names-renderer.h: update signal * gui/e-select-names-renderer.c (e_select_names_renderer_editing_done): emit the cancelled signal properly and don't update if it was cancelled (e_select_names_renderer_focus_out_event): if the cell loses focus the editing is done (e_select_names_renderer_start_editing): listen for focus out event, and only set the address if appropriate (e_select_names_renderer_get_property): handle name/email props (e_select_names_renderer_set_property): ditto (e_select_names_renderer_finalize): free name/email (e_select_names_renderer_class_init): install name/email props; cell_edited returns lists now * gui/e-select-names-editable.h: update protos * gui/e-select-names-editable.c: don't really override any of the gtkentry editable cell routines since we directly inherit from ENameSelectorEntry (e_select_names_editable_get_emails): get all the email addresses (e_select_names_editable_get_names): get all the names (e_select_names_editable_set_address): set the destination correctly for editing * gui/e-meeting-list-view.c (attendee_edited_cb): handle a blank entry by removing it and don't allow an entry that already exists to be entered (attendee_editing_canceled_cb): if the item editing is cancelled and it has no name or email address, remove it (process_section): if the contact has multiple addresses (ie a mailing list), expand the entries * gui/e-calendar-marshal.list: add new marshaller svn path=/trunk/; revision=28851
Diffstat (limited to 'calendar/gui/e-select-names-renderer.h')
-rw-r--r--calendar/gui/e-select-names-renderer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-select-names-renderer.h b/calendar/gui/e-select-names-renderer.h
index fb045d928f..0d469e14a3 100644
--- a/calendar/gui/e-select-names-renderer.h
+++ b/calendar/gui/e-select-names-renderer.h
@@ -51,8 +51,8 @@ struct _ESelectNamesRendererClass
void (* cell_edited) (ESelectNamesRenderer *renderer,
const gchar *path,
- const gchar *address,
- const gchar *name);
+ GList *addresses,
+ GList *names);
};
GType e_select_names_renderer_get_type (void);