diff --git a/search/keyword_matcher.cpp b/search/keyword_matcher.cpp index cd40926009..b22cdb537d 100644 --- a/search/keyword_matcher.cpp +++ b/search/keyword_matcher.cpp @@ -16,7 +16,7 @@ KeywordMatcher::KeywordMatcher(strings::UniString const * pKeywords, strings::UniString const & prefix, uint32_t maxKeywordMatchCost, uint32_t maxPrefixMatchCost, StringMatchFn keywordMatchFn, StringMatchFn prefixMatchFn) - : m_pKewords(pKeywords), m_prefix(prefix), + : m_pKeywords(pKeywords), m_prefix(prefix), m_maxKeywordMatchCost(maxKeywordMatchCost), m_maxPrefixMatchCost(maxPrefixMatchCost), m_keywordMatchFn(keywordMatchFn), @@ -38,7 +38,7 @@ void KeywordMatcher::ProcessNameToken(string const & name, strings::UniString co uint32_t matchPenalty = 0; for (size_t i = 0; i < m_minKeywordMatchCost.size(); ++i) { - uint32_t const matchCost = m_keywordMatchFn(&m_pKewords[i][0], m_pKewords[i].size(), + uint32_t const matchCost = m_keywordMatchFn(&m_pKeywords[i][0], m_pKeywords[i].size(), &s[0], s.size(), m_minKeywordMatchCost[i]); matchPenalty += matchCost; if (matchCost <= m_maxKeywordMatchCost) diff --git a/search/keyword_matcher.hpp b/search/keyword_matcher.hpp index 05debb7364..973b6b05e9 100644 --- a/search/keyword_matcher.hpp +++ b/search/keyword_matcher.hpp @@ -17,7 +17,7 @@ typedef uint32_t (* StringMatchFn)(strings::UniChar const * sA, uint32_t sizeA, // Matches keywords agains given names. class KeywordMatcher { - strings::UniString const * m_pKewords; + strings::UniString const * m_pKeywords; strings::UniString const & m_prefix; uint32_t m_maxKeywordMatchCost, m_maxPrefixMatchCost; StringMatchFn m_keywordMatchFn, m_prefixMatchFn;