summaryrefslogtreecommitdiff
path: root/src/lookup.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-09-06 22:45:15 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-09-06 22:45:15 +0300
commita364d9456dfdfd8181904fca6308e9c36eefd10a (patch)
treef355ded227cf52053784b991f5d8441a5502e447 /src/lookup.h
parent52a1652536e4e27751ac121009f85113e72afe7d (diff)
LookupWidget: Keyboard focus and cursor
Diffstat (limited to 'src/lookup.h')
-rw-r--r--src/lookup.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lookup.h b/src/lookup.h
index ecbe0036..a20a36d0 100644
--- a/src/lookup.h
+++ b/src/lookup.h
@@ -37,6 +37,7 @@ enum iLookupResultType {
37 37
38struct Impl_LookupResult { 38struct Impl_LookupResult {
39 enum iLookupResultType type; 39 enum iLookupResultType type;
40 float relevance; /* used for sorting results */
40 iString label; 41 iString label;
41 iString url; 42 iString url;
42 iString meta; 43 iString meta;
@@ -44,3 +45,5 @@ struct Impl_LookupResult {
44}; 45};
45 46
46iDeclareTypeConstruction(LookupResult) 47iDeclareTypeConstruction(LookupResult)
48
49iLookupResult * copy_LookupResult (const iLookupResult *);