summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchenxiajian <chenxiajian1985@gmail.com>2011-08-20 14:31:13 +0000
committerchenxiajian <chenxiajian1985@gmail.com>2011-08-20 14:31:13 +0000
commitbd8b0508854b2e2e45ed3ca03d3648008c17d247 (patch)
tree76f756139380fc23659e7dd6f8e07dc8707553cc
parente4af3569b74c03d542ec48955b2f9d75bf8b5ef7 (diff)
downloadenchant-bd8b0508854b2e2e45ed3ca03d3648008c17d247.tar.gz
wrong operation, revert the function. thank uwog
git-svn-id: svn+ssh://svn.abisource.com/svnroot/enchant/branches/gsoc2011hyphenation@30269 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
-rw-r--r--src/enchant++.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/enchant++.h b/src/enchant++.h
index c5a7ad2..17c7a20 100644
--- a/src/enchant++.h
+++ b/src/enchant++.h
@@ -115,14 +115,13 @@ namespace enchant
//void hyphenate (const std::string & utf8word,
// std::string & out_suggestions) {
- // //not implement yet chenxiajian
// // we only need to return one result
// // so delete it
//}
std::string hyphenate (const std::string & utf8word) {
std::string result;
- //hyphenate (utf8word, result);
+ hyphenate (utf8word, result);
return result;
}