summaryrefslogtreecommitdiff
path: root/basic/source/runtime
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-11-11 21:25:36 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-11-11 22:37:24 -0600
commit8b308d510e656c6d165d3bcd2f42029f34e9498e (patch)
tree1d7e779cb65016b7d217c672875433ee57c2c11d /basic/source/runtime
parent62ee42a209dfd4862cab9311868f4f38a6e000ac (diff)
basic: include <> for external includes
Change-Id: I4715bbe853d60ef15f20a4d2441c688003ca568e
Diffstat (limited to 'basic/source/runtime')
-rw-r--r--basic/source/runtime/dllmgr-none.cxx16
-rw-r--r--basic/source/runtime/dllmgr-x64.cxx16
-rw-r--r--basic/source/runtime/dllmgr-x86.cxx16
-rw-r--r--basic/source/runtime/dllmgr.hxx4
-rw-r--r--basic/source/runtime/methods1.cxx4
-rw-r--r--basic/source/runtime/props.cxx2
-rw-r--r--basic/source/runtime/runtime.cxx2
-rw-r--r--basic/source/runtime/sbdiagnose.cxx2
8 files changed, 31 insertions, 31 deletions
diff --git a/basic/source/runtime/dllmgr-none.cxx b/basic/source/runtime/dllmgr-none.cxx
index 95c02b71cb65..360128405723 100644
--- a/basic/source/runtime/dllmgr-none.cxx
+++ b/basic/source/runtime/dllmgr-none.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#if defined(WNT)
#include <windows.h>
@@ -30,13 +30,13 @@
#include <map>
#include <vector>
-#include "basic/sbx.hxx"
-#include "basic/sbxvar.hxx"
-#include "osl/thread.h"
-#include "rtl/ref.hxx"
-#include "rtl/string.hxx"
-#include "rtl/ustring.hxx"
-#include "salhelper/simplereferenceobject.hxx"
+#include <basic/sbx.hxx>
+#include <basic/sbxvar.hxx>
+#include <osl/thread.h>
+#include <rtl/ref.hxx>
+#include <rtl/string.hxx>
+#include <rtl/ustring.hxx>
+#include <salhelper/simplereferenceobject.hxx>
#include "dllmgr.hxx"
diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx
index d172833d3116..d1dc86a01caa 100644
--- a/basic/source/runtime/dllmgr-x64.cxx
+++ b/basic/source/runtime/dllmgr-x64.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#if defined(WNT)
#include <windows.h>
@@ -30,13 +30,13 @@
#include <map>
#include <vector>
-#include "basic/sbx.hxx"
-#include "basic/sbxvar.hxx"
-#include "osl/thread.h"
-#include "rtl/ref.hxx"
-#include "rtl/string.hxx"
-#include "rtl/ustring.hxx"
-#include "salhelper/simplereferenceobject.hxx"
+#include <basic/sbx.hxx>
+#include <basic/sbxvar.hxx>
+#include <osl/thread.h>
+#include <rtl/ref.hxx>
+#include <rtl/string.hxx>
+#include <rtl/ustring.hxx>
+#include <salhelper/simplereferenceobject.hxx>
#undef max
diff --git a/basic/source/runtime/dllmgr-x86.cxx b/basic/source/runtime/dllmgr-x86.cxx
index 60b302755bd0..a4fcbf348a53 100644
--- a/basic/source/runtime/dllmgr-x86.cxx
+++ b/basic/source/runtime/dllmgr-x86.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#if defined(WNT)
#include <windows.h>
@@ -30,14 +30,14 @@
#include <map>
#include <vector>
-#include "basic/sbx.hxx"
-#include "basic/sbxvar.hxx"
+#include <basic/sbx.hxx>
+#include <basic/sbxvar.hxx>
#include "runtime.hxx"
-#include "osl/thread.h"
-#include "rtl/ref.hxx"
-#include "rtl/string.hxx"
-#include "rtl/ustring.hxx"
-#include "salhelper/simplereferenceobject.hxx"
+#include <osl/thread.h>
+#include <rtl/ref.hxx>
+#include <rtl/string.hxx>
+#include <rtl/ustring.hxx>
+#include <salhelper/simplereferenceobject.hxx>
#undef max
diff --git a/basic/source/runtime/dllmgr.hxx b/basic/source/runtime/dllmgr.hxx
index 4d74bb1157a6..9bb1a0faf8cb 100644
--- a/basic/source/runtime/dllmgr.hxx
+++ b/basic/source/runtime/dllmgr.hxx
@@ -20,12 +20,12 @@
#ifndef INCLUDED_BASIC_SOURCE_RUNTIME_DLLMGR_HXX
#define INCLUDED_BASIC_SOURCE_RUNTIME_DLLMGR_HXX
-#include "sal/config.h"
+#include <sal/config.h>
#include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp>
-#include "basic/sberrors.hxx"
+#include <basic/sberrors.hxx>
class SbxArray;
class SbxVariable;
diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx
index bf83745efd25..0bfa5687644f 100644
--- a/basic/source/runtime/methods1.cxx
+++ b/basic/source/runtime/methods1.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 <cstddef>
@@ -44,7 +44,7 @@
#include <iosys.hxx>
#include "sbunoobj.hxx"
#include "propacc.hxx"
-#include "sal/log.hxx"
+#include <sal/log.hxx>
#include <comphelper/processfactory.hxx>
diff --git a/basic/source/runtime/props.cxx b/basic/source/runtime/props.cxx
index cc6536c157bd..14566f50aada 100644
--- a/basic/source/runtime/props.cxx
+++ b/basic/source/runtime/props.cxx
@@ -22,7 +22,7 @@
#include "stdobj.hxx"
#include "rtlproto.hxx"
#include "errobject.hxx"
-#include "basegfx/numeric/ftools.hxx"
+#include <basegfx/numeric/ftools.hxx>
// Properties and methods lay the return value down at Get (bWrite = sal_False)
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 442635eee117..ad31f7812f83 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -64,7 +64,7 @@
#include "sb.hrc"
#include "sbintern.hxx"
#include "sbunoobj.hxx"
-#include "basic/codecompletecache.hxx"
+#include <basic/codecompletecache.hxx>
using com::sun::star::uno::Reference;
diff --git a/basic/source/runtime/sbdiagnose.cxx b/basic/source/runtime/sbdiagnose.cxx
index 3fab4909c758..c06bc8fefede 100644
--- a/basic/source/runtime/sbdiagnose.cxx
+++ b/basic/source/runtime/sbdiagnose.cxx
@@ -21,7 +21,7 @@
#include "rtlproto.hxx"
#include "sbdiagnose.hxx"
-#include "basic/sbstar.hxx"
+#include <basic/sbstar.hxx>
#include <tools/debug.hxx>
#include <comphelper/flagguard.hxx>