diff options
Diffstat (limited to 'codemaker/source/cppumaker')
-rw-r--r-- | codemaker/source/cppumaker/cppumaker.cxx | 18 | ||||
-rw-r--r-- | codemaker/source/cppumaker/cppuoptions.cxx | 4 | ||||
-rw-r--r-- | codemaker/source/cppumaker/cppuoptions.hxx | 2 | ||||
-rw-r--r-- | codemaker/source/cppumaker/cpputype.cxx | 26 | ||||
-rw-r--r-- | codemaker/source/cppumaker/cpputype.hxx | 4 | ||||
-rw-r--r-- | codemaker/source/cppumaker/dependencies.cxx | 18 | ||||
-rw-r--r-- | codemaker/source/cppumaker/dependencies.hxx | 4 | ||||
-rw-r--r-- | codemaker/source/cppumaker/dumputils.cxx | 6 | ||||
-rw-r--r-- | codemaker/source/cppumaker/dumputils.hxx | 2 | ||||
-rw-r--r-- | codemaker/source/cppumaker/includes.cxx | 16 | ||||
-rw-r--r-- | codemaker/source/cppumaker/includes.hxx | 4 |
11 files changed, 52 insertions, 52 deletions
diff --git a/codemaker/source/cppumaker/cppumaker.cxx b/codemaker/source/cppumaker/cppumaker.cxx index 0ab47d9dafbb..927183918b1a 100644 --- a/codemaker/source/cppumaker/cppumaker.cxx +++ b/codemaker/source/cppumaker/cppumaker.cxx @@ -17,21 +17,21 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include <sal/config.h> #include <cstdlib> #include <cstring> #include <iostream> #include <vector> -#include "codemaker/generatedtypeset.hxx" -#include "codemaker/typemanager.hxx" -#include "rtl/ref.hxx" -#include "rtl/string.hxx" -#include "rtl/ustring.hxx" -#include "sal/main.h" -#include "sal/types.h" -#include "unoidl/unoidl.hxx" +#include <codemaker/generatedtypeset.hxx> +#include <codemaker/typemanager.hxx> +#include <rtl/ref.hxx> +#include <rtl/string.hxx> +#include <rtl/ustring.hxx> +#include <sal/main.h> +#include <sal/types.h> +#include <unoidl/unoidl.hxx> #include "cppuoptions.hxx" #include "cpputype.hxx" diff --git a/codemaker/source/cppumaker/cppuoptions.cxx b/codemaker/source/cppumaker/cppuoptions.cxx index d4575968b784..54bfec3393f9 100644 --- a/codemaker/source/cppumaker/cppuoptions.cxx +++ b/codemaker/source/cppumaker/cppuoptions.cxx @@ -21,8 +21,8 @@ #include <string.h> #include "cppuoptions.hxx" -#include "osl/thread.h" -#include "osl/process.h" +#include <osl/thread.h> +#include <osl/process.h> using ::rtl::OString; diff --git a/codemaker/source/cppumaker/cppuoptions.hxx b/codemaker/source/cppumaker/cppuoptions.hxx index 882dfa66dbef..16b7ca75f829 100644 --- a/codemaker/source/cppumaker/cppuoptions.hxx +++ b/codemaker/source/cppumaker/cppuoptions.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_CPPUOPTIONS_HXX #define INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_CPPUOPTIONS_HXX -#include "codemaker/options.hxx" +#include <codemaker/options.hxx> class CppuOptions : public Options { diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx index bff92a920d57..36014c13460b 100644 --- a/codemaker/source/cppumaker/cpputype.cxx +++ b/codemaker/source/cppumaker/cpputype.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 <algorithm> #include <cassert> @@ -28,18 +28,18 @@ #include <vector> #include <iostream> -#include "rtl/alloc.h" -#include "rtl/ref.hxx" -#include "rtl/ustrbuf.hxx" -#include "rtl/ustring.hxx" -#include "rtl/strbuf.hxx" -#include "unoidl/unoidl.hxx" - -#include "codemaker/commoncpp.hxx" -#include "codemaker/exceptiontree.hxx" -#include "codemaker/generatedtypeset.hxx" -#include "codemaker/typemanager.hxx" -#include "codemaker/unotype.hxx" +#include <rtl/alloc.h> +#include <rtl/ref.hxx> +#include <rtl/ustrbuf.hxx> +#include <rtl/ustring.hxx> +#include <rtl/strbuf.hxx> +#include <unoidl/unoidl.hxx> + +#include <codemaker/commoncpp.hxx> +#include <codemaker/exceptiontree.hxx> +#include <codemaker/generatedtypeset.hxx> +#include <codemaker/typemanager.hxx> +#include <codemaker/unotype.hxx> #include "cpputype.hxx" #include "cppuoptions.hxx" diff --git a/codemaker/source/cppumaker/cpputype.hxx b/codemaker/source/cppumaker/cpputype.hxx index fd254b06ca65..cde5c68d2f93 100644 --- a/codemaker/source/cppumaker/cpputype.hxx +++ b/codemaker/source/cppumaker/cpputype.hxx @@ -20,9 +20,9 @@ #ifndef INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_CPPUTYPE_HXX #define INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_CPPUTYPE_HXX -#include "sal/config.h" +#include <sal/config.h> -#include "rtl/ref.hxx" +#include <rtl/ref.hxx> namespace codemaker { class GeneratedTypeSet; } namespace rtl { class OUString; } diff --git a/codemaker/source/cppumaker/dependencies.cxx b/codemaker/source/cppumaker/dependencies.cxx index 314e0213fec0..aed0df3d944b 100644 --- a/codemaker/source/cppumaker/dependencies.cxx +++ b/codemaker/source/cppumaker/dependencies.cxx @@ -17,21 +17,21 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include <sal/config.h> #include <cassert> #include <utility> #include <vector> -#include "codemaker/global.hxx" -#include "codemaker/typemanager.hxx" -#include "codemaker/unotype.hxx" +#include <codemaker/global.hxx> +#include <codemaker/typemanager.hxx> +#include <codemaker/unotype.hxx> -#include "rtl/ref.hxx" -#include "rtl/string.hxx" -#include "rtl/ustring.hxx" -#include "sal/types.h" -#include "unoidl/unoidl.hxx" +#include <rtl/ref.hxx> +#include <rtl/string.hxx> +#include <rtl/ustring.hxx> +#include <sal/types.h> +#include <unoidl/unoidl.hxx> #include "dependencies.hxx" diff --git a/codemaker/source/cppumaker/dependencies.hxx b/codemaker/source/cppumaker/dependencies.hxx index 2434ce953223..b74ae489d076 100644 --- a/codemaker/source/cppumaker/dependencies.hxx +++ b/codemaker/source/cppumaker/dependencies.hxx @@ -20,11 +20,11 @@ #ifndef INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DEPENDENCIES_HXX #define INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DEPENDENCIES_HXX -#include "sal/config.h" +#include <sal/config.h> #include <map> -#include "rtl/ref.hxx" +#include <rtl/ref.hxx> namespace rtl { class OUString; } class TypeManager; diff --git a/codemaker/source/cppumaker/dumputils.cxx b/codemaker/source/cppumaker/dumputils.cxx index 90d12dc7d7a0..a540e782bbd7 100644 --- a/codemaker/source/cppumaker/dumputils.cxx +++ b/codemaker/source/cppumaker/dumputils.cxx @@ -20,10 +20,10 @@ #include "dumputils.hxx" -#include "codemaker/global.hxx" +#include <codemaker/global.hxx> -#include "rtl/ustring.hxx" -#include "sal/types.h" +#include <rtl/ustring.hxx> +#include <sal/types.h> namespace codemaker { namespace cppumaker { diff --git a/codemaker/source/cppumaker/dumputils.hxx b/codemaker/source/cppumaker/dumputils.hxx index c00bd266b87a..543427cb41f0 100644 --- a/codemaker/source/cppumaker/dumputils.hxx +++ b/codemaker/source/cppumaker/dumputils.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DUMPUTILS_HXX #define INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DUMPUTILS_HXX -#include "sal/config.h" +#include <sal/config.h> namespace rtl { class OUString; } class FileStream; diff --git a/codemaker/source/cppumaker/includes.cxx b/codemaker/source/cppumaker/includes.cxx index 2a57b1332395..b317ff05784b 100644 --- a/codemaker/source/cppumaker/includes.cxx +++ b/codemaker/source/cppumaker/includes.cxx @@ -23,15 +23,15 @@ #include "dependencies.hxx" #include "dumputils.hxx" -#include "codemaker/global.hxx" -#include "codemaker/typemanager.hxx" -#include "codemaker/unotype.hxx" +#include <codemaker/global.hxx> +#include <codemaker/typemanager.hxx> +#include <codemaker/unotype.hxx> -#include "osl/diagnose.h" -#include "rtl/ref.hxx" -#include "rtl/string.hxx" -#include "rtl/ustring.hxx" -#include "sal/types.h" +#include <osl/diagnose.h> +#include <rtl/ref.hxx> +#include <rtl/string.hxx> +#include <rtl/ustring.hxx> +#include <sal/types.h> #include <vector> diff --git a/codemaker/source/cppumaker/includes.hxx b/codemaker/source/cppumaker/includes.hxx index dd33bcc9b62a..3e7c20569ee2 100644 --- a/codemaker/source/cppumaker/includes.hxx +++ b/codemaker/source/cppumaker/includes.hxx @@ -20,8 +20,8 @@ #ifndef INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_INCLUDES_HXX #define INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_INCLUDES_HXX -#include "rtl/ref.hxx" -#include "rtl/ustring.hxx" +#include <rtl/ref.hxx> +#include <rtl/ustring.hxx> #include "dependencies.hxx" |