summaryrefslogtreecommitdiff
path: root/svl/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-23 22:31:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-23 22:45:51 +0200
commit65c7343768a9a3e09f4be0047b456159d0870ec0 (patch)
tree31de04431301e61557c3ef05f2013015015ef840 /svl/source
parent92236b3eabb93b753adc21d72dc41f1b0330a8a4 (diff)
loplugin:includeform: svl
Change-Id: I769b091515d1e6b7d16652d11ff2b94a75584ad0
Diffstat (limited to 'svl/source')
-rw-r--r--svl/source/config/asiancfg.cxx2
-rw-r--r--svl/source/config/languageoptions.cxx2
-rw-r--r--svl/source/crypto/cryptosign.cxx14
-rw-r--r--svl/source/fsstor/fsfactory.cxx2
-rw-r--r--svl/source/inc/passwordcontainer.hxx2
-rw-r--r--svl/source/items/itempool.cxx2
-rw-r--r--svl/source/items/itemset.cxx2
-rw-r--r--svl/source/items/poolio.cxx2
-rw-r--r--svl/source/items/stringio.cxx2
-rw-r--r--svl/source/passwordcontainer/passwordcontainer.cxx2
10 files changed, 16 insertions, 16 deletions
diff --git a/svl/source/config/asiancfg.cxx b/svl/source/config/asiancfg.cxx
index 3e77bc6ff14d..6da7901f5e96 100644
--- a/svl/source/config/asiancfg.cxx
+++ b/svl/source/config/asiancfg.cxx
@@ -33,7 +33,7 @@
#include <com/sun/star/uno/Sequence.hxx>
#include <comphelper/configuration.hxx>
#include <comphelper/processfactory.hxx>
-#include "officecfg/Office/Common.hxx"
+#include <officecfg/Office/Common.hxx>
#include <rtl/ustrbuf.hxx>
#include <rtl/ustring.h>
#include <rtl/ustring.hxx>
diff --git a/svl/source/config/languageoptions.cxx b/svl/source/config/languageoptions.cxx
index abc2c7630fb3..9f9fe4513819 100644
--- a/svl/source/config/languageoptions.cxx
+++ b/svl/source/config/languageoptions.cxx
@@ -27,7 +27,7 @@
#include <rtl/instance.hxx>
#include <com/sun/star/i18n/ScriptType.hpp>
#include <unotools/syslocale.hxx>
-#include "officecfg/System.hxx"
+#include <officecfg/System.hxx>
#ifdef _WIN32
#if !defined WIN32_LEAN_AND_MEAN
diff --git a/svl/source/crypto/cryptosign.cxx b/svl/source/crypto/cryptosign.cxx
index 0130e9cc3408..f52e2731e078 100644
--- a/svl/source/crypto/cryptosign.cxx
+++ b/svl/source/crypto/cryptosign.cxx
@@ -30,13 +30,13 @@
#if HAVE_FEATURE_NSS && !defined(_WIN32)
// NSS headers for PDF signing
-#include "nss.h"
-#include "cert.h"
-#include "hasht.h"
-#include "secerr.h"
-#include "sechash.h"
-#include "cms.h"
-#include "cmst.h"
+#include <nss.h>
+#include <cert.h>
+#include <hasht.h>
+#include <secerr.h>
+#include <sechash.h>
+#include <cms.h>
+#include <cmst.h>
// We use curl for RFC3161 time stamp requests
#include <curl/curl.h>
diff --git a/svl/source/fsstor/fsfactory.cxx b/svl/source/fsstor/fsfactory.cxx
index f9e1ab52940f..acdf68e98a34 100644
--- a/svl/source/fsstor/fsfactory.cxx
+++ b/svl/source/fsstor/fsfactory.cxx
@@ -18,7 +18,7 @@
*/
-#include "fsfactory.hxx"
+#include <fsfactory.hxx>
#include <cppuhelper/factory.hxx>
#include <com/sun/star/ucb/XSimpleFileAccess.hpp>
#include <com/sun/star/embed/ElementModes.hpp>
diff --git a/svl/source/inc/passwordcontainer.hxx b/svl/source/inc/passwordcontainer.hxx
index c17d5fea8ec9..bda69d6a745f 100644
--- a/svl/source/inc/passwordcontainer.hxx
+++ b/svl/source/inc/passwordcontainer.hxx
@@ -39,7 +39,7 @@
#include <rtl/ref.hxx>
#include <osl/mutex.hxx>
-#include "syscreds.hxx"
+#include <syscreds.hxx>
#define MEMORY_RECORD 0
#define PERSISTENT_RECORD 1
diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx
index c80605970327..4357342dd499 100644
--- a/svl/source/items/itempool.cxx
+++ b/svl/source/items/itempool.cxx
@@ -26,7 +26,7 @@
#include <sal/log.hxx>
#include <svl/SfxBroadcaster.hxx>
#include <svl/hint.hxx>
-#include "poolio.hxx"
+#include <poolio.hxx>
#include <algorithm>
#include <cassert>
diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx
index fc1ac104a652..f520b26a7371 100644
--- a/svl/source/items/itemset.cxx
+++ b/svl/source/items/itemset.cxx
@@ -36,7 +36,7 @@
#include <tools/solar.h>
#include <rtl/string.hxx>
-#include "poolio.hxx"
+#include <poolio.hxx>
static const sal_uInt16 nInitCount = 10; // Single USHORTs => 5 pairs without '0'
diff --git a/svl/source/items/poolio.cxx b/svl/source/items/poolio.cxx
index 81f498bd1d76..4d73a8af581f 100644
--- a/svl/source/items/poolio.cxx
+++ b/svl/source/items/poolio.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "poolio.hxx"
+#include <poolio.hxx>
#include <sal/log.hxx>
#include <tools/solar.h>
diff --git a/svl/source/items/stringio.cxx b/svl/source/items/stringio.cxx
index 3ee78e354078..98b1cb7076b8 100644
--- a/svl/source/items/stringio.cxx
+++ b/svl/source/items/stringio.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "stringio.hxx"
+#include <stringio.hxx>
#include <tools/stream.hxx>
diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx
index c2e8b7100028..2905f63e115e 100644
--- a/svl/source/passwordcontainer/passwordcontainer.cxx
+++ b/svl/source/passwordcontainer/passwordcontainer.cxx
@@ -18,7 +18,7 @@
*/
-#include "passwordcontainer.hxx"
+#include <passwordcontainer.hxx>
#include <unotools/pathoptions.hxx>
#include <cppuhelper/factory.hxx>