summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/acmplwrd.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/inc/acmplwrd.hxx b/sw/inc/acmplwrd.hxx
index 46281699f697..72421c384c7b 100644
--- a/sw/inc/acmplwrd.hxx
+++ b/sw/inc/acmplwrd.hxx
@@ -32,6 +32,7 @@
#include <deque>
#include <editeng/swafopt.hxx>
+#include <editeng/LatinLookupTree.hxx>
class SwDoc;
class SwAutoCompleteWord_Impl;
@@ -46,6 +47,7 @@ class SwAutoCompleteWord
/// contains extended strings carrying source information
editeng::SortedAutoCompleteStrings m_WordList;
+ LookupTree* m_LookupTree;
SwAutoCompleteStringPtrDeque aLRULst;
SwAutoCompleteWord_Impl* pImpl;
@@ -74,7 +76,10 @@ public:
const editeng::SortedAutoCompleteStrings& GetWordList() const
{ return m_WordList; }
+
void CheckChangedList(const editeng::SortedAutoCompleteStrings& rNewLst);
+
+ bool GetWordsMatching(String aMatch, std::vector<String>& aWords) const;
};