diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-04-23 15:27:47 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-04-23 15:47:46 +0200 |
commit | d92932744fdbaa78cec8dd8b991d5f442f6eef4b (patch) | |
tree | 87167e9ae86ad02a94015d59a335cccfc7b8c588 /sw/inc/acmplwrd.hxx | |
parent | fe45c9ef10442d0991abd7a45d0e7f2d7c1338e1 (diff) |
fdo#62643 sw: fix autocomplate wrt. adding to a partially finished word
This partially reverts commits 1eee77f2c2b4fa5f693708218c74a8f3909649a6
and 51f9e894f46e718200a14bcd61e9e44c64bc5396.
Change-Id: Ie6a1202e139a0eb30cac482a2bb528ef70c7797f
Diffstat (limited to 'sw/inc/acmplwrd.hxx')
-rw-r--r-- | sw/inc/acmplwrd.hxx | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/sw/inc/acmplwrd.hxx b/sw/inc/acmplwrd.hxx index 52a37772b586..7b2f40bea571 100644 --- a/sw/inc/acmplwrd.hxx +++ b/sw/inc/acmplwrd.hxx @@ -68,21 +68,8 @@ public: void CheckChangedList(const editeng::SortedAutoCompleteStrings& rNewLst); - // Resets the current position within the tree to its root node. - void returnToRoot(); - - // Advances to a given node within the AutoComplete tree. - void gotoNode(OUString sNode); - - // Advances from the current position towards the node keyed with cKey. - void advance(const sal_Unicode cKey); - - // Goes back one char within the tree, except if the current node is already the root node. - void goBack(); - - // Returns all words matching a given prefix aMatch. If bIgnoreCurrentPos is set, the current - // position within the tree is ignored and replaced by aMatch. - bool GetWordsMatching(String aMatch, std::vector<String>& aWords, bool bIgnoreCurrentPos) const; + // Returns all words matching a given prefix aMatch. + bool GetWordsMatching(String aMatch, std::vector<String>& aWords) const; }; |