summaryrefslogtreecommitdiff
path: root/libs/hunspell/src/replist.hxx
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2016-05-13 19:32:21 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2016-05-13 19:32:21 +0000
commit37c98eaad76b7f1bf86c75fe2c32cf6aa11f7c6f (patch)
tree32aede144aa0cd0f2dd058b003cdbd534a2f969c /libs/hunspell/src/replist.hxx
parente73bb3845517a31fa795e8d2174fcc8572835b33 (diff)
SpellChecker: Updated hunspell to 1.4.1
git-svn-id: http://svn.miranda-ng.org/main/trunk@16828 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'libs/hunspell/src/replist.hxx')
-rw-r--r--libs/hunspell/src/replist.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/hunspell/src/replist.hxx b/libs/hunspell/src/replist.hxx
index 319eb03fb0..59366e9e02 100644
--- a/libs/hunspell/src/replist.hxx
+++ b/libs/hunspell/src/replist.hxx
@@ -79,6 +79,9 @@
#include "w_char.hxx"
+#include <string>
+#include <vector>
+
class LIBHUNSPELL_DLL_EXPORTED RepList {
private:
RepList(const RepList&);
@@ -100,5 +103,6 @@ class LIBHUNSPELL_DLL_EXPORTED RepList {
int near(const char* word);
int match(const char* word, int n);
int conv(const char* word, char* dest, size_t destsize);
+ bool conv(const char* word, std::string& dest);
};
#endif