diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-04-11 15:50:57 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-04-11 15:50:57 +0800 |
commit | 9b8230a24c15f594069fec206bd93be86a502b9c (patch) | |
tree | e70d3f8697b34b48a9f9375cd404eb0ca4880818 /addressbook/backend | |
parent | 5c2ab36536714ed22a78d4fa5b45b9bafc58e239 (diff) | |
download | gsoc2013-evolution-9b8230a24c15f594069fec206bd93be86a502b9c.tar gsoc2013-evolution-9b8230a24c15f594069fec206bd93be86a502b9c.tar.gz gsoc2013-evolution-9b8230a24c15f594069fec206bd93be86a502b9c.tar.bz2 gsoc2013-evolution-9b8230a24c15f594069fec206bd93be86a502b9c.tar.lz gsoc2013-evolution-9b8230a24c15f594069fec206bd93be86a502b9c.tar.xz gsoc2013-evolution-9b8230a24c15f594069fec206bd93be86a502b9c.tar.zst gsoc2013-evolution-9b8230a24c15f594069fec206bd93be86a502b9c.zip |
Added E_CARD_SIMPLE_FIELD_LAST_SIMPLE_STRING.
2001-04-11 Christopher James Lahey <clahey@ximian.com>
* backend/ebook/e-card-simple.h: Added
E_CARD_SIMPLE_FIELD_LAST_SIMPLE_STRING.
* gui/component/addressbook-component.c (accepted_dnd_types):
Fixed a warning here.
* gui/widgets/e-addressbook-model.c: Modified this to have more
columns, but not let them be edited if they're not a simple
string.
* gui/widgets/e-minicard-view.c (e_minicard_view_init): Fixed a
warning and a memory leak here.
svn path=/trunk/; revision=9230
Diffstat (limited to 'addressbook/backend')
-rw-r--r-- | addressbook/backend/ebook/e-card-simple.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/backend/ebook/e-card-simple.h b/addressbook/backend/ebook/e-card-simple.h index 66d8e87db4..608e7488df 100644 --- a/addressbook/backend/ebook/e-card-simple.h +++ b/addressbook/backend/ebook/e-card-simple.h @@ -13,8 +13,8 @@ #define __E_CARD_SIMPLE_H__ #include <time.h> +#include <gtk/gtk.h> #include <stdio.h> -#include <gtk/gtkobject.h> #include <addressbook/backend/ebook/e-card.h> #include <addressbook/backend/ebook/e-card-types.h> #include <e-util/e-list.h> @@ -116,6 +116,7 @@ enum _ECardSimpleField { E_CARD_SIMPLE_FIELD_SPOUSE, E_CARD_SIMPLE_FIELD_NOTE, E_CARD_SIMPLE_FIELD_FBURL, + E_CARD_SIMPLE_FIELD_LAST_SIMPLE_STRING = E_CARD_SIMPLE_FIELD_FBURL, E_CARD_SIMPLE_FIELD_ANNIVERSARY, E_CARD_SIMPLE_FIELD_BIRTH_DATE, E_CARD_SIMPLE_FIELD_MAILER, |