diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-10 19:05:01 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-10 19:05:01 +0800 |
commit | 570fb78135d9112a2a63ade331cc477e5c1f72ec (patch) | |
tree | 1574497342df6d8b536699a0951d5da5a63d9af0 /addressbook/gui/widgets | |
parent | f58676daaff03a866cb29cd854f564152d3b289b (diff) | |
download | gsoc2013-evolution-570fb78135d9112a2a63ade331cc477e5c1f72ec.tar.gz gsoc2013-evolution-570fb78135d9112a2a63ade331cc477e5c1f72ec.tar.zst gsoc2013-evolution-570fb78135d9112a2a63ade331cc477e5c1f72ec.zip |
Switched from ETable to ETableScrolled.
2000-07-09 Christopher James Lahey <clahey@helixcode.com>
* gui/component/addressbook.c,
gui/component/select-names/e-select-names.c,
gui/component/select-names/e-select-names.h: Switched from ETable
to ETableScrolled.
* addressbook/gui/minicard/e-minicard.c: Don't display mailer or
"name or org" fields.
svn path=/trunk/; revision=4035
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-minicard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c index 4a73fc8eb4..cdc809f6e4 100644 --- a/addressbook/gui/widgets/e-minicard.c +++ b/addressbook/gui/widgets/e-minicard.c @@ -595,7 +595,7 @@ remodel( EMinicard *e_minicard ) list = e_minicard->fields; e_minicard->fields = NULL; - for(field = E_CARD_SIMPLE_FIELD_FULL_NAME; field != E_CARD_SIMPLE_FIELD_LAST && count < 5; field++) { + for(field = E_CARD_SIMPLE_FIELD_FULL_NAME; field != E_CARD_SIMPLE_FIELD_LAST - 2 && count < 5; field++) { EMinicardField *minicard_field = NULL; if (list) |