diff options
Diffstat (limited to 'widgets/text/e-completion-test.c')
-rw-r--r-- | widgets/text/e-completion-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/text/e-completion-test.c b/widgets/text/e-completion-test.c index 7a5ed920cd..cf6b925a0e 100644 --- a/widgets/text/e-completion-test.c +++ b/widgets/text/e-completion-test.c @@ -119,7 +119,7 @@ dict_check (gpointer ptr) } static void -begin_dict_search (ECompletion *complete, const gchar *txt, gint pos, gint limit, gpointer user_data) +request_dict_search (ECompletion *complete, const gchar *txt, gint pos, gint limit, gpointer user_data) { gint len = strlen (txt); @@ -170,8 +170,8 @@ main (int argc, gchar **argv) complete = e_completion_new (); gtk_signal_connect (GTK_OBJECT (complete), - "begin_completion", - GTK_SIGNAL_FUNC (begin_dict_search), + "request_completion", + GTK_SIGNAL_FUNC (request_dict_search), NULL); gtk_signal_connect (GTK_OBJECT (complete), "end_completion", |