diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-03-26 00:10:08 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-03-26 00:11:55 +0100 |
commit | f1ec4b66c2bbcfd40605f8741db557ed80e871cb (patch) | |
tree | 2cafc707946d68f8b246a418bb524cd50ae47753 | |
parent | 4bc4420854d38f19146bb68b524c673dfa5c31a7 (diff) |
Adapt the tree to tools/svwin.h removal
-rwxr-xr-x | basic/source/runtime/dllmgr-none.cxx | 5 | ||||
-rwxr-xr-x | basic/source/runtime/dllmgr-x64.cxx | 5 | ||||
-rwxr-xr-x | basic/source/runtime/dllmgr-x86.cxx | 5 | ||||
-rwxr-xr-x | sfx2/source/appl/impldde.cxx | 2 | ||||
-rwxr-xr-x | svx/source/dialog/sendreportw32.cxx | 3 |
5 files changed, 14 insertions, 6 deletions
diff --git a/basic/source/runtime/dllmgr-none.cxx b/basic/source/runtime/dllmgr-none.cxx index db32b646b619..e893cd3fb8b5 100755 --- a/basic/source/runtime/dllmgr-none.cxx +++ b/basic/source/runtime/dllmgr-none.cxx @@ -29,6 +29,10 @@ #include "precompiled_basic.hxx" #include "sal/config.h" +#if defined(WNT) +#include <windows.h> +#endif + #include <algorithm> #include <cstddef> #include <list> @@ -42,7 +46,6 @@ #include "rtl/string.hxx" #include "rtl/ustring.hxx" #include "salhelper/simplereferenceobject.hxx" -#include "tools/svwin.h" #include "dllmgr.hxx" diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx index 1a5845e10ee2..dc774f17bfb0 100755 --- a/basic/source/runtime/dllmgr-x64.cxx +++ b/basic/source/runtime/dllmgr-x64.cxx @@ -29,6 +29,10 @@ #include "precompiled_basic.hxx" #include "sal/config.h" +#if defined(WNT) +#include <windows.h> +#endif + #include <algorithm> #include <cstddef> #include <list> @@ -42,7 +46,6 @@ #include "rtl/string.hxx" #include "rtl/ustring.hxx" #include "salhelper/simplereferenceobject.hxx" -#include "tools/svwin.h" #undef max diff --git a/basic/source/runtime/dllmgr-x86.cxx b/basic/source/runtime/dllmgr-x86.cxx index 1a417e99c284..8650a4699dba 100755 --- a/basic/source/runtime/dllmgr-x86.cxx +++ b/basic/source/runtime/dllmgr-x86.cxx @@ -29,6 +29,10 @@ #include "precompiled_basic.hxx" #include "sal/config.h" +#if defined(WNT) +#include <windows.h> +#endif + #include <algorithm> #include <cstddef> #include <list> @@ -43,7 +47,6 @@ #include "rtl/string.hxx" #include "rtl/ustring.hxx" #include "salhelper/simplereferenceobject.hxx" -#include "tools/svwin.h" #undef max diff --git a/sfx2/source/appl/impldde.cxx b/sfx2/source/appl/impldde.cxx index 0aa33ae82c5a..2edde1d08bc3 100755 --- a/sfx2/source/appl/impldde.cxx +++ b/sfx2/source/appl/impldde.cxx @@ -30,7 +30,7 @@ #include "precompiled_sfx2.hxx" #if defined(WNT) -#include <tools/svwin.h> +#include <windows.h> #endif #include "impldde.hxx" diff --git a/svx/source/dialog/sendreportw32.cxx b/svx/source/dialog/sendreportw32.cxx index a8c6cfa6ae0b..97bf71aeb371 100755 --- a/svx/source/dialog/sendreportw32.cxx +++ b/svx/source/dialog/sendreportw32.cxx @@ -33,9 +33,8 @@ #define UNICODE #define _UNICODE -#include <tools/svwin.h> - #define WIN32_LEAN_AND_MEAN +#include <windows.h> #include <tchar.h> #include <stdio.h> #include <systools/win32/uwinapi.h> |