diff options
author | sgeerken <devnull@localhost> | 2012-07-10 23:19:04 +0200 |
---|---|---|
committer | sgeerken <devnull@localhost> | 2012-07-10 23:19:04 +0200 |
commit | af4420e3bbd894c7ed21dc676dfdd35d7149bd32 (patch) | |
tree | 3058368b0ea93a452b32e8f11c927ed894f766c0 /dw/hyphenator.hh | |
parent | 8b1467671cb6c48c7d1abf43c4cbd7ad7b0f5aa3 (diff) |
For hyphenation, all characters not belonging to the actual word, e.g. punctuation marks, are ignored. Currently only words for English and German.y
Diffstat (limited to 'dw/hyphenator.hh')
-rw-r--r-- | dw/hyphenator.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dw/hyphenator.hh b/dw/hyphenator.hh index 9ef3e306..bf123e5a 100644 --- a/dw/hyphenator.hh +++ b/dw/hyphenator.hh @@ -30,6 +30,8 @@ private: void insertPattern (char *s); void insertException (char *s); + bool isCharPartOfActualWord (char *s); + public: Hyphenator (core::Platform *platform, const char *patFile, const char *excFile); |