diff options
Diffstat (limited to 'WebCore/platform/win/SystemInfo.cpp')
-rw-r--r-- | WebCore/platform/win/SystemInfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebCore/platform/win/SystemInfo.cpp b/WebCore/platform/win/SystemInfo.cpp index f010769..f2fe62b 100644 --- a/WebCore/platform/win/SystemInfo.cpp +++ b/WebCore/platform/win/SystemInfo.cpp @@ -32,6 +32,9 @@ namespace WebCore { bool isRunningOnVistaOrLater() { +#if OS(WINCE) + return false; +#else static bool isVistaOrLater; static bool initialized; @@ -47,6 +50,7 @@ bool isRunningOnVistaOrLater() isVistaOrLater = vi.dwMajorVersion >= 6; return isVistaOrLater; +#endif } } // namespace WebCore |