diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-10-20 04:04:12 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-10-20 04:04:12 +0800 |
commit | 5474b15d41d5f54a8a7a723dc28deb7c688a4c19 (patch) | |
tree | bbd8a83c2ef3df6a76b3cd5294c275dba0612746 | |
parent | 4e2a4d752ddf6f0b874624935aa75291ea89c89b (diff) | |
download | gsoc2013-evolution-5474b15d41d5f54a8a7a723dc28deb7c688a4c19.tar gsoc2013-evolution-5474b15d41d5f54a8a7a723dc28deb7c688a4c19.tar.gz gsoc2013-evolution-5474b15d41d5f54a8a7a723dc28deb7c688a4c19.tar.bz2 gsoc2013-evolution-5474b15d41d5f54a8a7a723dc28deb7c688a4c19.tar.lz gsoc2013-evolution-5474b15d41d5f54a8a7a723dc28deb7c688a4c19.tar.xz gsoc2013-evolution-5474b15d41d5f54a8a7a723dc28deb7c688a4c19.tar.zst gsoc2013-evolution-5474b15d41d5f54a8a7a723dc28deb7c688a4c19.zip |
Remove Family name column since it's a bit weird. This also fixes the
2000-10-19 Christopher James Lahey <clahey@helixcode.com>
* gui/widgets/e-addressbook-view.c (SPEC): Remove Family name
column since it's a bit weird. This also fixes the initial state
since all of the column choices were off by one.
svn path=/trunk/; revision=6040
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 5daddb716c..c3e6270fac 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2000-10-19 Christopher James Lahey <clahey@helixcode.com> + + * gui/widgets/e-addressbook-view.c (SPEC): Remove Family name + column since it's a bit weird. This also fixes the initial state + since all of the column choices were off by one. + 2000-10-19 Ettore Perazzoli <ettore@helixcode.com> * printing/Makefile.am (glade_DATA): Remove diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 27d5d3c5cd..186cd7ce31 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -466,7 +466,6 @@ table_right_click(ETableScrolled *table, gint row, gint col, GdkEvent *event, EA #define SPEC "<?xml version=\"1.0\"?> \ <ETableSpecification click-to-add=\"true\" draw-grid=\"true\" _click-to-add-message=\"* Click here to add a contact *\"> \ <ETableColumn model_col= \"0\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ - <ETableColumn model_col= \"1\" _title=\"Family Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableColumn model_col= \"2\" _title=\"Email\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableColumn model_col= \"3\" _title=\"Primary\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableColumn model_col= \"4\" _title=\"Business\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ |