Commit a12d28c0 authored by Thiago Macieira's avatar Thiago Macieira Committed by The Qt Project
Browse files

Fix warnings found by the headersclean test


qhelpsearchengine.h:71:9: error: declaration of 'wordList' shadows a member of 'this' [-Werror=shadow]

Change-Id: I3d0d6216276c9c06091d0f726c8513cc52da1885
Reviewed-by: default avatarKarsten Heimrich <karsten.heimrich@digia.com>
parent a602cbd1
No related merge requests found
Showing with 2 additions and 2 deletions
......@@ -67,8 +67,8 @@ public:
QHelpSearchQuery()
: fieldName(DEFAULT) { wordList.clear(); }
QHelpSearchQuery(FieldName field, const QStringList &wordList)
: fieldName(field), wordList(wordList) {}
QHelpSearchQuery(FieldName field, const QStringList &wordList_)
: fieldName(field), wordList(wordList_) {}
FieldName fieldName;
QStringList wordList;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment