diff options
author | Jon Trowbridge <trow@gnu.org> | 2001-06-06 01:46:56 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-06-06 01:46:56 +0800 |
commit | dc04c9c3fa6c5dd075f2f1c0853ab1213b02f92c (patch) | |
tree | c53a5b9bda2cf03f8a397553bb4bc5665168bbf0 /widgets/text/e-entry.h | |
parent | ce23de3eeb67e8140f67f056644223f6c9cdb44a (diff) | |
download | gsoc2013-evolution-dc04c9c3fa6c5dd075f2f1c0853ab1213b02f92c.tar.gz gsoc2013-evolution-dc04c9c3fa6c5dd075f2f1c0853ab1213b02f92c.tar.zst gsoc2013-evolution-dc04c9c3fa6c5dd075f2f1c0853ab1213b02f92c.zip |
Small changes throughout to use ECompletionMatch.
2001-06-05 Jon Trowbridge <trow@gnu.org>
* gal/e-text/e-entry.c: Small changes throughout to use
ECompletionMatch.
* gal/e-text/e-completion-view.c: Small changes throughout
to use ECompletionMatch.
* gal/e-text/e-completion.c: Small changes throughout to use
ECompletionMatch.
* gal/e-text/e-completion-match.h:
* gal/e-text/e-completion-match.c: Added. A struct to contain
completion matches. This lets us more easily pass around
information between the various bits of completion machinery.
svn path=/trunk/; revision=10118
Diffstat (limited to 'widgets/text/e-entry.h')
-rw-r--r-- | widgets/text/e-entry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/text/e-entry.h b/widgets/text/e-entry.h index 373a6843e9..948bb8a4b2 100644 --- a/widgets/text/e-entry.h +++ b/widgets/text/e-entry.h @@ -51,7 +51,7 @@ typedef struct _EEntry EEntry; typedef struct _EEntryClass EEntryClass; struct _EEntryPrivate; -typedef void (*EEntryCompletionHandler) (EEntry *entry, const gchar *text, gpointer extra_data); +typedef void (*EEntryCompletionHandler) (EEntry *entry, ECompletionMatch *match); struct _EEntry { GtkTable parent; |