summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2009-10-27 15:19:19 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2009-11-03 09:06:04 (GMT)
commitfa1856bcb2eff41dadf0900202dd43f44ddb2343 (patch)
tree74023d89e92903ea43ad087810e45f9867787b18 /src/3rdparty/webkit/WebCore
parent0aade44ed9a2f223c603984a84ab012eadc5c388 (diff)
downloadQt-fa1856bcb2eff41dadf0900202dd43f44ddb2343.zip
Qt-fa1856bcb2eff41dadf0900202dd43f44ddb2343.tar.gz
Qt-fa1856bcb2eff41dadf0900202dd43f44ddb2343.tar.bz2
WebKit compile fix for Windows CE
Not sure if this is right fix. We could also disable PLUGIN_PACKAGE_SIMPLE_HASH. But this is automatically enabled when NETSCAPE_PLUGIN_API is disabled. Reviewed-by: thartman
Diffstat (limited to 'src/3rdparty/webkit/WebCore')
-rw-r--r--src/3rdparty/webkit/WebCore/platform/FileSystem.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/WebCore/platform/FileSystem.h b/src/3rdparty/webkit/WebCore/platform/FileSystem.h
index 958eb73..d144990 100644
--- a/src/3rdparty/webkit/WebCore/platform/FileSystem.h
+++ b/src/3rdparty/webkit/WebCore/platform/FileSystem.h
@@ -90,6 +90,17 @@ struct PlatformModuleVersion {
{
}
+ bool operator != (const PlatformModuleVersion& rhs) const
+ {
+ return mostSig != rhs.mostSig && leastSig != rhs.leastSig;
+ }
+
+
+ bool operator > (const PlatformModuleVersion& rhs) const
+ {
+ return mostSig > rhs.mostSig && leastSig > rhs.leastSig;
+ }
+
};
#else
typedef QLibrary* PlatformModule;