Changeset 769 for trunk/tools/assistant/lib/qhelpindexwidget.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/qhelpindexwidget.cpp
r651 r769 163 163 m_mutex.unlock(); 164 164 165 foreach ( QStringdbFileName, m_helpEngine->fileNameReaderMap.keys()) {165 foreach (const QString &dbFileName, m_helpEngine->fileNameReaderMap.keys()) { 166 166 m_mutex.lock(); 167 167 if (m_abort) { … … 179 179 if (!lst.isEmpty()) { 180 180 m_mutex.lock(); 181 foreach ( QStrings, lst)181 foreach (const QString &s, lst) 182 182 indicesSet.insert(s); 183 183 if (m_abort) { … … 318 318 QRegExp regExp(wildcard, Qt::CaseInsensitive); 319 319 regExp.setPatternSyntax(QRegExp::Wildcard); 320 foreach ( QStringindex, d->indices) {320 foreach (const QString &index, d->indices) { 321 321 if (index.contains(regExp)) { 322 322 lst.append(index); … … 333 333 } 334 334 } else { 335 foreach ( QStringindex, d->indices) {335 foreach (const QString &index, d->indices) { 336 336 if (index.contains(filter, Qt::CaseInsensitive)) { 337 337 lst.append(index);
Note:
See TracChangeset
for help on using the changeset viewer.