Changeset 769 for trunk/tools/assistant/lib/qhelpsearchengine.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/tools/assistant/lib/qhelpsearchengine.cpp
r651 r769 64 64 65 65 #if defined(QT_CLUCENE_SUPPORT) 66 using namespace qt::fulltextsearch::clucene;66 using namespace fulltextsearch::clucene; 67 67 #else 68 using namespace qt::fulltextsearch::std;68 using namespace fulltextsearch::std; 69 69 #endif 70 70 … … 196 196 QHelpSearchResultWidget *resultWidget; 197 197 198 qt::fulltextsearch::QHelpSearchIndexReader *indexReader;198 fulltextsearch::QHelpSearchIndexReader *indexReader; 199 199 QHelpSearchIndexWriter *indexWriter; 200 200 … … 215 215 216 216 The QHelpSearchQuery class contains the field name and the associated search 217 term. Depending on the field the search term might get split up into sep erate217 term. Depending on the field the search term might get split up into separate 218 218 terms to be parsed differently by the search engine. 219 219 … … 239 239 \value DEFAULT the default field provided by the search widget, several terms should be 240 240 split and stored in the word list except search terms enclosed in quotes. 241 \value FUZZY a field only provided in use with clucene. Terms should be split in sep erate241 \value FUZZY a field only provided in use with clucene. Terms should be split in separate 242 242 words and passed to the search engine. 243 \value WITHOUT a field only provided in use with clucene. Terms should be split in sep erate243 \value WITHOUT a field only provided in use with clucene. Terms should be split in separate 244 244 words and passed to the search engine. 245 \value PHRASE a field only provided in use with clucene. Terms should not be split in sep erate245 \value PHRASE a field only provided in use with clucene. Terms should not be split in separate 246 246 words. 247 \value ALL a field only provided in use with clucene. Terms should be split in sep erate247 \value ALL a field only provided in use with clucene. Terms should be split in separate 248 248 words and passed to the search engine 249 \value ATLEAST a field only provided in use with clucene. Terms should be split in sep erate249 \value ATLEAST a field only provided in use with clucene. Terms should be split in separate 250 250 words and passed to the search engine 251 251 */
Note:
See TracChangeset
for help on using the changeset viewer.