summaryrefslogtreecommitdiff
path: root/sal/osl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-27 19:25:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-27 19:28:51 +0200
commit16faecdad480007073ffcb9dd3094afb1e97390f (patch)
tree491de31428d62a099c8212095d29b615fb6425f1 /sal/osl
parent33f67eee3eca8b2bb671b0eda79c81c73a092466 (diff)
loplugin:includeform: sal (Windows)
Change-Id: Id60bcfadbfdf4b37f276159b12360347bde30a2e
Diffstat (limited to 'sal/osl')
-rw-r--r--sal/osl/w32/backtrace.cxx2
-rw-r--r--sal/osl/w32/dllentry.cxx4
-rw-r--r--sal/osl/w32/file_error.cxx2
-rw-r--r--sal/osl/w32/file_error.hxx2
-rw-r--r--sal/osl/w32/file_url.cxx2
-rw-r--r--sal/osl/w32/file_url.hxx8
-rw-r--r--sal/osl/w32/nlsupport.cxx2
-rw-r--r--sal/osl/w32/process.cxx4
-rw-r--r--sal/osl/w32/procimpl.cxx2
-rw-r--r--sal/osl/w32/salinit.cxx2
-rw-r--r--sal/osl/w32/tempfile.cxx6
-rw-r--r--sal/osl/w32/thread.cxx2
-rw-r--r--sal/osl/w32/time.cxx4
13 files changed, 21 insertions, 21 deletions
diff --git a/sal/osl/w32/backtrace.cxx b/sal/osl/w32/backtrace.cxx
index 408bd655e777..e5a6e5873e68 100644
--- a/sal/osl/w32/backtrace.cxx
+++ b/sal/osl/w32/backtrace.cxx
@@ -24,7 +24,7 @@
#include <rtl/ustrbuf.hxx>
#include <sal/backtrace.hxx>
-#include "backtraceasstring.hxx"
+#include <backtraceasstring.hxx>
namespace {
diff --git a/sal/osl/w32/dllentry.cxx b/sal/osl/w32/dllentry.cxx
index 52159853eb3e..77d16e9fb5d4 100644
--- a/sal/osl/w32/dllentry.cxx
+++ b/sal/osl/w32/dllentry.cxx
@@ -33,9 +33,9 @@
#include "file_url.hxx"
#include "gmutex.hxx"
-#include "rtllifecycle.h"
+#include <rtllifecycle.h>
-#include <thread.hxx>
+#include "thread.hxx"
/*
This is needed because DllMain is called after static constructors. A DLL's
diff --git a/sal/osl/w32/file_error.cxx b/sal/osl/w32/file_error.cxx
index bfa55bff9009..da71664b6fdb 100644
--- a/sal/osl/w32/file_error.cxx
+++ b/sal/osl/w32/file_error.cxx
@@ -18,7 +18,7 @@
*/
#include "file_error.hxx"
-#include "winerror.h"
+#include <winerror.h>
/* OS error to oslFileError values mapping table */
struct osl_file_error_entry
diff --git a/sal/osl/w32/file_error.hxx b/sal/osl/w32/file_error.hxx
index 57d825b7e00f..714297c11eb9 100644
--- a/sal/osl/w32/file_error.hxx
+++ b/sal/osl/w32/file_error.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SAL_OSL_W32_FILE_ERROR_HXX
#define INCLUDED_SAL_OSL_W32_FILE_ERROR_HXX
-#include "osl/file.h"
+#include <osl/file.h>
oslFileError oslTranslateFileError (/*DWORD*/ unsigned long dwError);
diff --git a/sal/osl/w32/file_url.cxx b/sal/osl/w32/file_url.cxx
index e5fac8590a53..568abf19fd7c 100644
--- a/sal/osl/w32/file_url.cxx
+++ b/sal/osl/w32/file_url.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "systools/win32/uwinapi.h"
+#include <systools/win32/uwinapi.h>
#include "file_url.hxx"
#include "file_error.hxx"
diff --git a/sal/osl/w32/file_url.hxx b/sal/osl/w32/file_url.hxx
index 43bed9100bdb..9661543639c9 100644
--- a/sal/osl/w32/file_url.hxx
+++ b/sal/osl/w32/file_url.hxx
@@ -20,10 +20,10 @@
#ifndef INCLUDED_SAL_OSL_W32_FILE_URL_HXX
#define INCLUDED_SAL_OSL_W32_FILE_URL_HXX
-#include "sal/types.h"
-#include "rtl/ustring.h"
-#include "osl/file.h"
-#include "osl/mutex.h"
+#include <sal/types.h>
+#include <rtl/ustring.h>
+#include <osl/file.h>
+#include <osl/mutex.h>
#ifdef _MSC_VER
#pragma warning(push,1)
diff --git a/sal/osl/w32/nlsupport.cxx b/sal/osl/w32/nlsupport.cxx
index 9a7c41040c26..5c937ed6de39 100644
--- a/sal/osl/w32/nlsupport.cxx
+++ b/sal/osl/w32/nlsupport.cxx
@@ -27,7 +27,7 @@
#endif
#include <wchar.h>
-#include <nlsupport.hxx>
+#include "nlsupport.hxx"
#include <osl/mutex.h>
#include <osl/nlsupport.h>
diff --git a/sal/osl/w32/process.cxx b/sal/osl/w32/process.cxx
index 0fe42bbdbe27..0636278ab7d6 100644
--- a/sal/osl/w32/process.cxx
+++ b/sal/osl/w32/process.cxx
@@ -33,8 +33,8 @@
#include <osl/nlsupport.h>
#include <o3tl/char16_t2wchar_t.hxx>
-#include <filetime.hxx>
-#include <nlsupport.hxx>
+#include "filetime.hxx"
+#include "nlsupport.hxx"
#include "procimpl.hxx"
#include "file_url.hxx"
#include "path_helper.hxx"
diff --git a/sal/osl/w32/procimpl.cxx b/sal/osl/w32/procimpl.cxx
index da48691685fc..dcaca741ae1f 100644
--- a/sal/osl/w32/procimpl.cxx
+++ b/sal/osl/w32/procimpl.cxx
@@ -29,7 +29,7 @@
# undef WIN32_LEAN_AND_MEAN
#endif
-#include <file-impl.hxx>
+#include "file-impl.hxx"
#include "procimpl.hxx"
#include <rtl/ustring.hxx>
#include <rtl/ustrbuf.hxx>
diff --git a/sal/osl/w32/salinit.cxx b/sal/osl/w32/salinit.cxx
index c97afe0d843d..71c14e66a566 100644
--- a/sal/osl/w32/salinit.cxx
+++ b/sal/osl/w32/salinit.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#include "system.h"
#include "time.hxx"
diff --git a/sal/osl/w32/tempfile.cxx b/sal/osl/w32/tempfile.cxx
index a538b5dd9720..5424bfbde077 100644
--- a/sal/osl/w32/tempfile.cxx
+++ b/sal/osl/w32/tempfile.cxx
@@ -17,12 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "systools/win32/uwinapi.h"
+#include <systools/win32/uwinapi.h>
-#include "osl/file.h"
+#include <osl/file.h>
#include <o3tl/char16_t2wchar_t.hxx>
-#include <file-impl.hxx>
+#include "file-impl.hxx"
#include "file_error.hxx"
#include "file_url.hxx"
#include "path_helper.hxx"
diff --git a/sal/osl/w32/thread.cxx b/sal/osl/w32/thread.cxx
index 6de040c482f2..1c2e9894956b 100644
--- a/sal/osl/w32/thread.cxx
+++ b/sal/osl/w32/thread.cxx
@@ -18,7 +18,7 @@
*/
#include "system.h"
-#include <thread.hxx>
+#include "thread.hxx"
#include <osl/diagnose.h>
#include <osl/thread.h>
diff --git a/sal/osl/w32/time.cxx b/sal/osl/w32/time.cxx
index b503a05e81dc..51f05ab30a4c 100644
--- a/sal/osl/w32/time.cxx
+++ b/sal/osl/w32/time.cxx
@@ -20,8 +20,8 @@
#include <sal/config.h>
#include "system.h"
-#include <filetime.hxx>
-#include <time.hxx>
+#include "filetime.hxx"
+#include "time.hxx"
#include <osl/diagnose.h>
#include <osl/time.h>