diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-18 20:21:35 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-18 20:21:35 (GMT) |
commit | 14866f7fd79f39c2f20f5e0149fe6e11d7121d70 (patch) | |
tree | bd6ec2bdb8e9f2656a409aacf215e2a2d08345a8 /tools/assistant/lib/qhelpsearchengine.cpp | |
parent | 52e517b50aafd6cc0bec597abd50d8b3f7e982dd (diff) | |
parent | 4f4cc6e0ea79e1c363fd6f62de16c96f9c82b375 (diff) | |
download | Qt-14866f7fd79f39c2f20f5e0149fe6e11d7121d70.zip Qt-14866f7fd79f39c2f20f5e0149fe6e11d7121d70.tar.gz Qt-14866f7fd79f39c2f20f5e0149fe6e11d7121d70.tar.bz2 |
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/berlin-staging-1 into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/berlin-staging-1:
Help system: Remove hard-coded qt namespace.
Help system: Handle all Clucene exceptions.
Diffstat (limited to 'tools/assistant/lib/qhelpsearchengine.cpp')
-rw-r--r-- | tools/assistant/lib/qhelpsearchengine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/assistant/lib/qhelpsearchengine.cpp b/tools/assistant/lib/qhelpsearchengine.cpp index 7c2635d..9914efa 100644 --- a/tools/assistant/lib/qhelpsearchengine.cpp +++ b/tools/assistant/lib/qhelpsearchengine.cpp @@ -63,9 +63,9 @@ QT_BEGIN_NAMESPACE #if defined(QT_CLUCENE_SUPPORT) - using namespace qt::fulltextsearch::clucene; + using namespace fulltextsearch::clucene; #else - using namespace qt::fulltextsearch::std; + using namespace fulltextsearch::std; #endif class QHelpSearchEnginePrivate : public QObject @@ -195,7 +195,7 @@ private: QHelpSearchQueryWidget *queryWidget; QHelpSearchResultWidget *resultWidget; - qt::fulltextsearch::QHelpSearchIndexReader *indexReader; + fulltextsearch::QHelpSearchIndexReader *indexReader; QHelpSearchIndexWriter *indexWriter; QPointer<QHelpEngineCore> helpEngine; |