Compile fix for Qt 4.8.6

Task-number: QTCREATORBUG-12695
Done-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
Change-Id: Id184bb051c08ee954474cca89308712e14710f23
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Robert Loehning
2014-07-17 16:53:42 +02:00
parent b0af82ebc9
commit 4f5747e348
2 changed files with 3 additions and 3 deletions

View File

@@ -181,9 +181,9 @@ bool FakeMetaObjectWithOrigin::operator ==(const FakeMetaObjectWithOrigin &o) co
return fakeMetaObject == o.fakeMetaObject; return fakeMetaObject == o.fakeMetaObject;
} }
uint qHash(const FakeMetaObjectWithOrigin &fmoo, int seed) uint qHash(const FakeMetaObjectWithOrigin &fmoo)
{ {
return qHash(fmoo.fakeMetaObject, seed); return qHash(fmoo.fakeMetaObject);
} }
} // namespace QmlJS } // namespace QmlJS

View File

@@ -687,7 +687,7 @@ public:
bool operator ==(const FakeMetaObjectWithOrigin &o) const; bool operator ==(const FakeMetaObjectWithOrigin &o) const;
}; };
QMLJS_EXPORT uint qHash(const FakeMetaObjectWithOrigin &fmoo, int seed = 0); QMLJS_EXPORT uint qHash(const FakeMetaObjectWithOrigin &fmoo);
class QMLJS_EXPORT CppQmlTypes class QMLJS_EXPORT CppQmlTypes
{ {