Drop Qt5: ClassView: Remove code below Qt 6.0.0

Change-Id: I067d37c7917eebf1d4d478be386dccf3474cd47f
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Jarek Kobus
2022-07-22 19:46:22 +02:00
parent 06d652e4a7
commit 3b1ead69d0
2 changed files with 0 additions and 8 deletions

View File

@@ -51,11 +51,7 @@ SymbolInformation::SymbolInformation() :
SymbolInformation::SymbolInformation(const QString &valueName, const QString &valueType,
int valueIconType)
: m_iconType(valueIconType)
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
, m_hash(qHashMulti(0, valueIconType, valueName, valueType))
#else
, m_hash(qHash(qMakePair(valueIconType, qMakePair(valueName, valueType))))
#endif
, m_name(valueName)
, m_type(valueType)
{