aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog2
-rw-r--r--addressbook/backend/ebook/e-card-compare.c3
-rw-r--r--addressbook/gui/component/select-names/e-select-names-text-model.c1
3 files changed, 4 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 61a7946e79..2d9f097917 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -2,7 +2,7 @@
* gui/widgets/e-addressbook-view.c,
gui/widgets/e-addressbook-view.h (create_alphabet): Use toggle
- buttons here.
+ buttons here. Fixes Ximian bug #10734.
2002-01-09 Christopher James Lahey <clahey@ximian.com>
diff --git a/addressbook/backend/ebook/e-card-compare.c b/addressbook/backend/ebook/e-card-compare.c
index 4723f95b41..28e2b1e0c6 100644
--- a/addressbook/backend/ebook/e-card-compare.c
+++ b/addressbook/backend/ebook/e-card-compare.c
@@ -57,6 +57,7 @@ static gchar *name_synonyms[][2] = {
{ "ian", "iain" },
{ "richard", "dick" },
{ "william", "bill" },
+ { "william", "will" },
{ "anthony", "tony" },
{ "michael", "mike" },
{ "eric", "erik" },
@@ -70,11 +71,13 @@ static gchar *name_synonyms[][2] = {
{ "amanda", "amy" },
{ "amanda", "manda" },
{ "jennifer", "jenny" },
+ { "christopher", "chris" },
{ "rebecca", "becca" },
{ "rebecca", "becky" },
{ "anderson", "andersen" },
{ "johnson", "johnsen" },
/* We could go on and on... */
+ /* We should add soundex here. */
{ NULL, NULL }
};
diff --git a/addressbook/gui/component/select-names/e-select-names-text-model.c b/addressbook/gui/component/select-names/e-select-names-text-model.c
index 8faa99d0e4..23751afb8c 100644
--- a/addressbook/gui/component/select-names/e-select-names-text-model.c
+++ b/addressbook/gui/component/select-names/e-select-names-text-model.c
@@ -741,7 +741,6 @@ e_select_names_text_model_get_nth_obj (ETextModel *model, gint n, gint *len)
{
ESelectNamesTextModel *text_model = E_SELECT_NAMES_TEXT_MODEL (model);
ESelectNamesModel *source = text_model->source;
- const gchar *txt;
gint i, pos;
i = nth_obj_index (source, n);