summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbasic/source/runtime/dllmgr-none.cxx5
-rwxr-xr-xbasic/source/runtime/dllmgr-x64.cxx5
-rwxr-xr-xbasic/source/runtime/dllmgr-x86.cxx5
-rwxr-xr-xsfx2/source/appl/impldde.cxx2
-rwxr-xr-xsvx/source/dialog/sendreportw32.cxx3
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>