aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor/e-contact-list-model.h
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/gui/contact-list-editor/e-contact-list-model.h')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-model.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-model.h b/addressbook/gui/contact-list-editor/e-contact-list-model.h
index da9be77b49..8665245501 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-model.h
+++ b/addressbook/gui/contact-list-editor/e-contact-list-model.h
@@ -16,13 +16,20 @@
typedef struct _EContactListModel EContactListModel;
typedef struct _EContactListModelClass EContactListModelClass;
+typedef struct {
+ ECardSimple *simple;
+ char *string;
+} SimpleAndString;
+
struct _EContactListModel {
ETableModel parent;
- ECardSimple **simples;
+ SimpleAndString **simples;
int simple_count;
+ int simple_alloc;
char **emails;
int email_count;
+ int email_alloc;
};