aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-completion-match.h
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-08-17 03:47:57 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-08-17 03:47:57 +0800
commitfd7cce60919fb86549b477a344f54a1c101af434 (patch)
treea5f027163c85d645ad3f004e229d613421dc8ca3 /widgets/text/e-completion-match.h
parent9333af2f12cdfe27cfa02fdb5e7634b2d310e967 (diff)
downloadgsoc2013-evolution-fd7cce60919fb86549b477a344f54a1c101af434.tar
gsoc2013-evolution-fd7cce60919fb86549b477a344f54a1c101af434.tar.gz
gsoc2013-evolution-fd7cce60919fb86549b477a344f54a1c101af434.tar.bz2
gsoc2013-evolution-fd7cce60919fb86549b477a344f54a1c101af434.tar.lz
gsoc2013-evolution-fd7cce60919fb86549b477a344f54a1c101af434.tar.xz
gsoc2013-evolution-fd7cce60919fb86549b477a344f54a1c101af434.tar.zst
gsoc2013-evolution-fd7cce60919fb86549b477a344f54a1c101af434.zip
Added "hit_count" to ECompletionMatch. Used by search
2001-08-16 Jon Trowbridge <trow@ximian.com> * gal/e-text/e-completion-match.h: Added "hit_count" to ECompletionMatch. Used by search refinement/unrefinement. * gal/e-text/e-completion.c (e_completion_refine_search): Added. Handle automatic search refinements. (e_completion_unrefine_search): Added. Handle automatic search "unrefinements", or reversions. (e_completion_begin_search): Check if the refinement or unrefinement operations can be used to handle the search. Emit "request_search" at the end of the call. (e_completion_class_init): Added a new signal "request_search". "begin_search" is now purely informational, telling views that a series of matches and an "end_search" are forthcoming. * configure.in: Increment version of 0.10.99.3. svn path=/trunk/; revision=12116
Diffstat (limited to 'widgets/text/e-completion-match.h')
-rw-r--r--widgets/text/e-completion-match.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/text/e-completion-match.h b/widgets/text/e-completion-match.h
index 4ec1733aca..c7e2a698bb 100644
--- a/widgets/text/e-completion-match.h
+++ b/widgets/text/e-completion-match.h
@@ -45,6 +45,7 @@ struct _ECompletionMatch {
gpointer user_data;
gint ref;
+ gint hit_count;
void (*destroy) (ECompletionMatch *);
};