summaryrefslogtreecommitdiff
path: root/src/lib/corelib/tools/id.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/tools/id.cpp')
-rw-r--r--src/lib/corelib/tools/id.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/corelib/tools/id.cpp b/src/lib/corelib/tools/id.cpp
index b4c791f75..cca755512 100644
--- a/src/lib/corelib/tools/id.cpp
+++ b/src/lib/corelib/tools/id.cpp
@@ -75,7 +75,7 @@ public:
: n(length), str(s)
{
if (!n)
- length = n = qstrlen(s);
+ length = n = int(qstrlen(s));
h = 0;
while (length--) {
h = (h << 4) + *s++;
@@ -95,7 +95,7 @@ static bool operator==(const StringHolder &sh1, const StringHolder &sh2)
}
-static uint qHash(const StringHolder &sh)
+QHashValueType qHash(const StringHolder &sh)
{
return sh.h;
}