summaryrefslogtreecommitdiffstats
path: root/sw/inc/acmplwrd.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-04-23 15:27:47 +0200
committerMiklos Vajna <vmiklos@suse.cz>2013-04-23 15:47:46 +0200
commitd92932744fdbaa78cec8dd8b991d5f442f6eef4b (patch)
tree87167e9ae86ad02a94015d59a335cccfc7b8c588 /sw/inc/acmplwrd.hxx
parentrestore ImageList::AddImage variant (diff)
downloadcore-d92932744fdbaa78cec8dd8b991d5f442f6eef4b.tar.gz
core-d92932744fdbaa78cec8dd8b991d5f442f6eef4b.zip
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.hxx17
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;
};