aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-08-17 03:50:39 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-08-17 03:50:39 +0800
commit03e7b2cf28cd43e25d69aacb85bf3567c72b190d (patch)
treecaa51d470576a085fb88a827e9628d8321da7988 /addressbook
parentfd7cce60919fb86549b477a344f54a1c101af434 (diff)
downloadgsoc2013-evolution-03e7b2cf28cd43e25d69aacb85bf3567c72b190d.tar
gsoc2013-evolution-03e7b2cf28cd43e25d69aacb85bf3567c72b190d.tar.gz
gsoc2013-evolution-03e7b2cf28cd43e25d69aacb85bf3567c72b190d.tar.bz2
gsoc2013-evolution-03e7b2cf28cd43e25d69aacb85bf3567c72b190d.tar.lz
gsoc2013-evolution-03e7b2cf28cd43e25d69aacb85bf3567c72b190d.tar.xz
gsoc2013-evolution-03e7b2cf28cd43e25d69aacb85bf3567c72b190d.tar.zst
gsoc2013-evolution-03e7b2cf28cd43e25d69aacb85bf3567c72b190d.zip
Renamed from _begin to match changes in gal 0.10.99.3.
2001-08-16 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-completion.c (e_select_names_completion_handle_request): Renamed from _begin to match changes in gal 0.10.99.3. svn path=/trunk/; revision=12117
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog4
-rw-r--r--addressbook/gui/component/select-names/e-select-names-completion.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index f782fd9b17..96a784290e 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,9 @@
2001-08-16 Jon Trowbridge <trow@ximian.com>
+ * gui/component/select-names/e-select-names-completion.c
+ (e_select_names_completion_handle_request): Renamed from _begin to
+ match changes in gal 0.10.99.3.
+
* gui/contact-editor/e-contact-quick-add.c (e_contact_quick_add):
Check that name != NULL before we start messing with it.
(Fixes bug #7329)
diff --git a/addressbook/gui/component/select-names/e-select-names-completion.c b/addressbook/gui/component/select-names/e-select-names-completion.c
index d91c9e5274..e0568311ae 100644
--- a/addressbook/gui/component/select-names/e-select-names-completion.c
+++ b/addressbook/gui/component/select-names/e-select-names-completion.c
@@ -76,7 +76,7 @@ static void e_select_names_completion_seq_complete_cb (EBookView *, gpointer us
static void e_select_names_completion_do_query (ESelectNamesCompletion *, const gchar *query_text, gint pos, gint limit);
-static void e_select_names_completion_begin (ECompletion *, const gchar *txt, gint pos, gint limit);
+static void e_select_names_completion_handle_request (ECompletion *, const gchar *txt, gint pos, gint limit);
static void e_select_names_completion_end (ECompletion *);
static void e_select_names_completion_cancel (ECompletion *);
@@ -688,7 +688,7 @@ e_select_names_completion_class_init (ESelectNamesCompletionClass *klass)
object_class->destroy = e_select_names_completion_destroy;
- completion_class->begin_completion = e_select_names_completion_begin;
+ completion_class->request_completion = e_select_names_completion_handle_request;
completion_class->end_completion = e_select_names_completion_end;
completion_class->cancel_completion = e_select_names_completion_cancel;
@@ -1019,7 +1019,7 @@ search_override_check (SearchOverride *over, const gchar *text)
*/
static void
-e_select_names_completion_begin (ECompletion *comp, const gchar *text, gint pos, gint limit)
+e_select_names_completion_handle_request (ECompletion *comp, const gchar *text, gint pos, gint limit)
{
ESelectNamesCompletion *selcomp = E_SELECT_NAMES_COMPLETION (comp);
const gchar *str;