summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-11-11 22:19:14 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-11-11 22:37:26 -0600
commit7ef3b651d0b081f265e310a1157bf62a3de2118f (patch)
treedcca153238affbfb7a2ced4d33d98b013a4fb65f /xmlscript
parent9a26a423540530a5f31c57e03363b2d2b7184b5e (diff)
xmlscript: include <> for external includes
Change-Id: I3921f93a5ec2d043ed25d7569297131c020c4e83
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/inc/misc.hxx2
-rw-r--r--xmlscript/source/inc/xml_import.hxx4
-rw-r--r--xmlscript/source/xml_helper/xml_impctx.cxx16
-rw-r--r--xmlscript/source/xmldlg_imexp/common.hxx2
-rw-r--r--xmlscript/source/xmlflat_imexp/xmlbas_export.cxx4
-rw-r--r--xmlscript/source/xmlflat_imexp/xmlbas_import.cxx4
-rw-r--r--xmlscript/test/imexp.cxx2
7 files changed, 17 insertions, 17 deletions
diff --git a/xmlscript/source/inc/misc.hxx b/xmlscript/source/inc/misc.hxx
index 47499a9b86c1..2420fa33623a 100644
--- a/xmlscript/source/inc/misc.hxx
+++ b/xmlscript/source/inc/misc.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_XMLSCRIPT_MISC_HXX
#define INCLUDED_XMLSCRIPT_MISC_HXX
-#include "com/sun/star/uno/Any.hxx"
+#include <com/sun/star/uno/Any.hxx>
namespace xmlscript
{
diff --git a/xmlscript/source/inc/xml_import.hxx b/xmlscript/source/inc/xml_import.hxx
index 129d96d77d34..d5efd903a41b 100644
--- a/xmlscript/source/inc/xml_import.hxx
+++ b/xmlscript/source/inc/xml_import.hxx
@@ -25,8 +25,8 @@
#include <tools/diagnose_ex.h>
#include <comphelper/processfactory.hxx>
-#include "com/sun/star/xml/input/XRoot.hpp"
-#include "com/sun/star/xml/sax/XExtendedDocumentHandler.hpp"
+#include <com/sun/star/xml/input/XRoot.hpp>
+#include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp>
namespace xmlscript
{
diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx b/xmlscript/source/xml_helper/xml_impctx.cxx
index 0121f291d234..adee7b22da12 100644
--- a/xmlscript/source/xml_helper/xml_impctx.cxx
+++ b/xmlscript/source/xml_helper/xml_impctx.cxx
@@ -19,14 +19,14 @@
#include "xml_import.hxx"
-#include "cppuhelper/factory.hxx"
-#include "cppuhelper/implementationentry.hxx"
-#include "cppuhelper/implbase1.hxx"
-#include "cppuhelper/implbase3.hxx"
-
-#include "com/sun/star/xml/input/XAttributes.hpp"
-#include "com/sun/star/lang/XInitialization.hpp"
-#include "com/sun/star/uno/XComponentContext.hpp"
+#include <cppuhelper/factory.hxx>
+#include <cppuhelper/implementationentry.hxx>
+#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase3.hxx>
+
+#include <com/sun/star/xml/input/XAttributes.hpp>
+#include <com/sun/star/lang/XInitialization.hpp>
+#include <com/sun/star/uno/XComponentContext.hpp>
#include <vector>
#include <boost/unordered_map.hpp>
diff --git a/xmlscript/source/xmldlg_imexp/common.hxx b/xmlscript/source/xmldlg_imexp/common.hxx
index 2c73caa6233d..ebe535051015 100644
--- a/xmlscript/source/xmldlg_imexp/common.hxx
+++ b/xmlscript/source/xmldlg_imexp/common.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_COMMON_HXX
#define INCLUDED_COMMON_HXX
-#include "sal/types.h"
+#include <sal/types.h>
namespace xmlscript {
diff --git a/xmlscript/source/xmlflat_imexp/xmlbas_export.cxx b/xmlscript/source/xmlflat_imexp/xmlbas_export.cxx
index a5f4b436ba33..d699513aac1a 100644
--- a/xmlscript/source/xmlflat_imexp/xmlbas_export.cxx
+++ b/xmlscript/source/xmlflat_imexp/xmlbas_export.cxx
@@ -18,8 +18,8 @@
*/
#include "xmlbas_export.hxx"
-#include "xmlscript/xmlns.h"
-#include "xmlscript/xml_helper.hxx"
+#include <xmlscript/xmlns.h>
+#include <xmlscript/xml_helper.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include <com/sun/star/script/XLibraryContainer2.hpp>
diff --git a/xmlscript/source/xmlflat_imexp/xmlbas_import.cxx b/xmlscript/source/xmlflat_imexp/xmlbas_import.cxx
index 85ad94498c6e..7c2e354b85b9 100644
--- a/xmlscript/source/xmlflat_imexp/xmlbas_import.cxx
+++ b/xmlscript/source/xmlflat_imexp/xmlbas_import.cxx
@@ -18,8 +18,8 @@
*/
#include "xmlbas_import.hxx"
-#include "xmlscript/xmlns.h"
-#include "xmlscript/xml_helper.hxx"
+#include <xmlscript/xmlns.h>
+#include <xmlscript/xml_helper.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include <com/sun/star/script/XLibraryContainerPassword.hpp>
diff --git a/xmlscript/test/imexp.cxx b/xmlscript/test/imexp.cxx
index 9678ef3239d5..41defc66b4d9 100644
--- a/xmlscript/test/imexp.cxx
+++ b/xmlscript/test/imexp.cxx
@@ -20,7 +20,7 @@
#include <config_folders.h>
#include <stdio.h>
-#include "osl/file.h"
+#include <osl/file.h>
#include <rtl/ustrbuf.hxx>