aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/e-cardlist-model.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-06-02 06:29:10 +0800
committerChris Lahey <clahey@src.gnome.org>2000-06-02 06:29:10 +0800
commit5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf (patch)
treea8a02635e105fd6c4a11fb163249c6420755cece /addressbook/gui/component/e-cardlist-model.h
parent8f4bcac53f23aa42a221f2105263a33521e77c85 (diff)
downloadgsoc2013-evolution-5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf.tar
gsoc2013-evolution-5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf.tar.gz
gsoc2013-evolution-5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf.tar.bz2
gsoc2013-evolution-5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf.tar.lz
gsoc2013-evolution-5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf.tar.xz
gsoc2013-evolution-5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf.tar.zst
gsoc2013-evolution-5ea91bd94b21b27d83d0f6b14d64ce8c0df88acf.zip
return TRUE if opening a contact editor so that we don't get a "new
2000-06-01 Christopher James Lahey <clahey@helixcode.com> * gui/minicard/e-minicard.c: return TRUE if opening a contact editor so that we don't get a "new dialog" contact editor. svn path=/trunk/; revision=3342
Diffstat (limited to 'addressbook/gui/component/e-cardlist-model.h')
-rw-r--r--addressbook/gui/component/e-cardlist-model.h21
1 files changed, 7 insertions, 14 deletions
diff --git a/addressbook/gui/component/e-cardlist-model.h b/addressbook/gui/component/e-cardlist-model.h
index 4a04bbf225..b7df356342 100644
--- a/addressbook/gui/component/e-cardlist-model.h
+++ b/addressbook/gui/component/e-cardlist-model.h
@@ -13,13 +13,6 @@
#define E_IS_CARDLIST_MODEL(o) (GTK_CHECK_TYPE ((o), E_CARDLIST_MODEL_TYPE))
#define E_IS_CARDLIST_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CARDLIST_MODEL_TYPE))
-/* Virtual Column list:
- 0 Email
- 1 Full Name
- 2 Street
- 3 Phone
-*/
-
typedef struct {
ETableModel parent;
@@ -38,12 +31,12 @@ GtkType e_cardlist_model_get_type (void);
ETableModel *e_cardlist_model_new (void);
/* Returns object with an extra ref count. */
-ECard *e_cardlist_model_get_card(ECardlistModel *model,
- int row);
-void add_card (ECardlistModel *model,
- ECard **card,
- int count);
-void remove_card (ECardlistModel *model,
- const char *id);
+ECard *e_cardlist_model_get (ECardlistModel *model,
+ int row);
+void e_cardlist_model_add (ECardlistModel *model,
+ ECard **card,
+ int count);
+void e_cardlist_model_remove (ECardlistModel *model,
+ const char *id);
#endif /* _E_CARDLIST_MODEL_H_ */