diff options
author | ck <qt-info@nokia.com> | 2010-01-29 14:32:32 (GMT) |
---|---|---|
committer | ck <qt-info@nokia.com> | 2010-01-29 14:32:32 (GMT) |
commit | db4415d06ab58c5c37afc4cb032b4eb89f68594f (patch) | |
tree | c9e68f81e28e7119c1b075bc40f41fc734342b52 /tools/assistant/lib/qhelpenginecore.cpp | |
parent | 2c3f2a0c41a9a2b8f1961197369b278d335f9cf1 (diff) | |
download | Qt-db4415d06ab58c5c37afc4cb032b4eb89f68594f.zip Qt-db4415d06ab58c5c37afc4cb032b4eb89f68594f.tar.gz Qt-db4415d06ab58c5c37afc4cb032b4eb89f68594f.tar.bz2 |
Assistant: Eliminate private tr contexts.
Merging private tr contexts into the surrounding class keeps
related strings together.
Contributed-by: Ritt Konstantin
Reviewed-by: kh1
Diffstat (limited to 'tools/assistant/lib/qhelpenginecore.cpp')
-rw-r--r-- | tools/assistant/lib/qhelpenginecore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/assistant/lib/qhelpenginecore.cpp b/tools/assistant/lib/qhelpenginecore.cpp index 0fceaaa..4809de6 100644 --- a/tools/assistant/lib/qhelpenginecore.cpp +++ b/tools/assistant/lib/qhelpenginecore.cpp @@ -119,7 +119,7 @@ bool QHelpEngineCorePrivate::setup() QHelpDBReader *reader = new QHelpDBReader(absFileName, QHelpGlobal::uniquifyConnectionName(info.fileName, this), this); if (!reader->init()) { - emit q->warning(tr("Cannot open documentation file %1: %2!") + emit q->warning(QHelpEngineCore::tr("Cannot open documentation file %1: %2!") .arg(absFileName, reader->errorMessage())); continue; } |