diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-01-22 22:16:34 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-01-23 14:04:24 +0100 |
commit | ba68436e3fea34b4ae696f96f8048502865cdc79 (patch) | |
tree | 8c6b47e16cab234b38a8ba67c930acced71dced2 /shell | |
parent | 2830d21964f655c3bbc8cda1f63ce6a3840f6742 (diff) |
Win SDK 8.1: apparently VersionHelpers.h needs to be included explicitly
http://ci.libreoffice.org/job/lo_gerrit_master/495/Gerrit=Gerrit,Platform=Windows/console
Change-Id: I0104d448906bd17857b3716856c544e632c1662c
Diffstat (limited to 'shell')
3 files changed, 9 insertions, 0 deletions
diff --git a/shell/source/win32/shlxthandler/propsheets/propsheets.cxx b/shell/source/win32/shlxthandler/propsheets/propsheets.cxx index 824b7fdd16f5..bd136d18031c 100644 --- a/shell/source/win32/shlxthandler/propsheets/propsheets.cxx +++ b/shell/source/win32/shlxthandler/propsheets/propsheets.cxx @@ -29,6 +29,9 @@ #pragma warning(push, 1) #endif #include <shellapi.h> +#ifdef _WIN32_WINNT_WINBLUE +#include <VersionHelpers.h> +#endif #if defined _MSC_VER #pragma warning(pop) #endif diff --git a/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx b/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx index 5d57a4fbac53..c3f883d34dee 100644 --- a/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx +++ b/shell/source/win32/shlxthandler/thumbviewer/thumbviewer.cxx @@ -40,6 +40,9 @@ #pragma warning(push, 1) #endif #include <shellapi.h> +#ifdef _WIN32_WINNT_WINBLUE +#include <VersionHelpers.h> +#endif #if defined _MSC_VER #pragma warning(pop) #endif diff --git a/shell/source/win32/shlxthandler/util/utilities.cxx b/shell/source/win32/shlxthandler/util/utilities.cxx index f97013ef6d38..8712aa252e10 100644 --- a/shell/source/win32/shlxthandler/util/utilities.cxx +++ b/shell/source/win32/shlxthandler/util/utilities.cxx @@ -25,6 +25,9 @@ #include "internal/config.hxx" #include "internal/utilities.hxx" +#ifdef _WIN32_WINNT_WINBLUE +#include <VersionHelpers.h> +#endif // constants |