forked from qt-creator/qt-creator
		
	ClangRefactoring: Fix compile with Qt5.6/gcc4.9
Change-Id: Ibea187c2216cc9f0a3c6ce53d5139b0a2c7c9065 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
		| @@ -75,7 +75,7 @@ public: | ||||
|                                                                       utf8Column); | ||||
|     } | ||||
|  | ||||
|     Symbols symbolsContaining(SymbolType symbolType, | ||||
|     Symbols symbolsContaining(SymbolType /*symbolType*/, | ||||
|                               Utils::SmallStringView/*regularExpression*/) const override | ||||
|     { | ||||
|         // TODO: implement | ||||
|   | ||||
| @@ -44,7 +44,7 @@ QString SymbolsFindFilter::id() const | ||||
|  | ||||
| QString SymbolsFindFilter::displayName() const | ||||
| { | ||||
|     return CppTools::Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME; | ||||
|     return QString(CppTools::Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME); | ||||
| } | ||||
|  | ||||
| bool SymbolsFindFilter::isEnabled() const | ||||
|   | ||||
| @@ -74,7 +74,7 @@ QString SymbolsFindFilter::id() const | ||||
|  | ||||
| QString SymbolsFindFilter::displayName() const | ||||
| { | ||||
|     return Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME; | ||||
|     return QString(Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME); | ||||
| } | ||||
|  | ||||
| bool SymbolsFindFilter::isEnabled() const | ||||
|   | ||||
		Reference in New Issue
	
	Block a user