diff options
author | Vlad Voicu <vladv@rosedu.org> | 2012-01-28 01:28:22 (GMT) |
---|---|---|
committer | vlad <vlad@tyrion.(none)> | 2012-10-13 13:55:44 (GMT) |
commit | 3d6bc0b6181c6cdfc6c0a91960e9dac30ddfdba2 (patch) | |
tree | b5196fc36721783a02492061fbbc865338ed6863 /SwifTools/SpellChecker.h | |
parent | eca3a097403adbd85fe3b0cf366f29ecc37cacc6 (diff) | |
download | swift-contrib-3d6bc0b6181c6cdfc6c0a91960e9dac30ddfdba2.zip swift-contrib-3d6bc0b6181c6cdfc6c0a91960e9dac30ddfdba2.tar.bz2 |
Changed name from vector to List for PositionPairList
Diffstat (limited to 'SwifTools/SpellChecker.h')
-rw-r--r-- | SwifTools/SpellChecker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SwifTools/SpellChecker.h b/SwifTools/SpellChecker.h index a9cbe77..746fcaf 100644 --- a/SwifTools/SpellChecker.h +++ b/SwifTools/SpellChecker.h @@ -23,7 +23,7 @@ namespace Swift { }; virtual bool isCorrect(const std::string& word) = 0; virtual void getSuggestions(const std::string& word, std::vector<std::string>& list) = 0; - virtual void checkFragment(const std::string& fragment, PositionPairVector& misspelledPositions) = 0; + virtual void checkFragment(const std::string& fragment, PositionPairList& misspelledPositions) = 0; protected: SpellParser *parser_; }; |