More qHash(T, uint) overloads for Qt types
authorGiuseppe D'Angelo <dangelog@gmail.com>
Sat, 24 Mar 2012 18:23:49 +0000 (18:23 +0000)
committerQt by Nokia <qt-info@nokia.com>
Sat, 7 Apr 2012 20:20:19 +0000 (22:20 +0200)
The more we get in 5.0, the better.

Change-Id: If00084477709db4fc3f6b2e15024d046491be2ae
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
src/corelib/tools/qregexp.cpp
src/dbus/qdbusextratypes.h
src/network/kernel/qhostaddress.cpp
src/network/kernel/qhostaddress.h

index 6462b3d..1db0fcf 100644 (file)
@@ -3815,9 +3815,9 @@ struct QRegExpPrivate
 };
 
 #if !defined(QT_NO_REGEXP_OPTIM)
-uint qHash(const QRegExpEngineKey &key)
+uint qHash(const QRegExpEngineKey &key, uint seed)
 {
-    return qHash(key.pattern);
+    return qHash(key.pattern, seed);
 }
 
 typedef QCache<QRegExpEngineKey, QRegExpEngine> EngineCache;
index d8bdf74..c1b8cff 100644 (file)
@@ -99,8 +99,8 @@ inline bool operator!=(const QDBusObjectPath &lhs, const QDBusObjectPath &rhs)
 inline bool operator<(const QDBusObjectPath &lhs, const QDBusObjectPath &rhs)
 { return lhs.path() < rhs.path(); }
 
-inline uint qHash(const QDBusObjectPath &objectPath)
-{ return qHash(objectPath.path()); }
+inline uint qHash(const QDBusObjectPath &objectPath, uint seed)
+{ return qHash(objectPath.path(), seed); }
 
 
 class Q_DBUS_EXPORT QDBusSignature
@@ -146,8 +146,8 @@ inline bool operator!=(const QDBusSignature &lhs, const QDBusSignature &rhs)
 inline bool operator<(const QDBusSignature &lhs, const QDBusSignature &rhs)
 { return lhs.signature() < rhs.signature(); }
 
-inline uint qHash(const QDBusSignature &signature)
-{ return qHash(signature.signature()); }
+inline uint qHash(const QDBusSignature &signature, uint seed)
+{ return qHash(signature.signature(), seed); }
 
 class QDBusVariant
 {
index 009c8f2..2adf19e 100644 (file)
@@ -1027,9 +1027,9 @@ QDebug operator<<(QDebug d, const QHostAddress &address)
 }
 #endif
 
-uint qHash(const QHostAddress &key)
+uint qHash(const QHostAddress &key, uint seed)
 {
-    return qHash(key.toString());
+    return qHash(key.toString(), seed);
 }
 
 #ifndef QT_NO_DATASTREAM
index fdf09ec..b298e3f 100644 (file)
@@ -135,7 +135,7 @@ Q_NETWORK_EXPORT QDebug operator<<(QDebug, const QHostAddress &);
 #endif
 
 
-Q_NETWORK_EXPORT uint qHash(const QHostAddress &key);
+Q_NETWORK_EXPORT uint qHash(const QHostAddress &key, uint seed = 0);
 
 #ifndef QT_NO_DATASTREAM
 Q_NETWORK_EXPORT QDataStream &operator<<(QDataStream &, const QHostAddress &);