diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2017-10-11 01:37:03 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2017-10-11 07:02:29 +0200 |
commit | 6beaa8aae6b4a56ceb2075d131b6ae319ef9ea9d (patch) | |
tree | 640e8df8327cafc60d7c6130a0318ee10cee76bb /bridges/inc | |
parent | 78f79760d5cb768cb482646fc71a90cd6cd1e630 (diff) |
bridges: consistently use "" and <> in include directives
Change-Id: I8fb8e4fad4d6bfb4e24648833826f1a7e211b062
Reviewed-on: https://gerrit.libreoffice.org/43320
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'bridges/inc')
-rw-r--r-- | bridges/inc/bridge.hxx | 8 | ||||
-rw-r--r-- | bridges/inc/cppinterfaceproxy.hxx | 12 | ||||
-rw-r--r-- | bridges/inc/types.hxx | 4 | ||||
-rw-r--r-- | bridges/inc/unointerfaceproxy.hxx | 10 | ||||
-rw-r--r-- | bridges/inc/vtablefactory.hxx | 10 | ||||
-rw-r--r-- | bridges/inc/vtables.hxx | 4 |
6 files changed, 24 insertions, 24 deletions
diff --git a/bridges/inc/bridge.hxx b/bridges/inc/bridge.hxx index a01bb42bc163..bae89b4b1364 100644 --- a/bridges/inc/bridge.hxx +++ b/bridges/inc/bridge.hxx @@ -25,10 +25,10 @@ #include <atomic> #include <cstddef> -#include "sal/types.h" -#include "typelib/typedescription.h" -#include "uno/environment.h" -#include "uno/mapping.h" +#include <sal/types.h> +#include <typelib/typedescription.h> +#include <uno/environment.h> +#include <uno/mapping.h> namespace bridges { namespace cpp_uno { namespace shared { diff --git a/bridges/inc/cppinterfaceproxy.hxx b/bridges/inc/cppinterfaceproxy.hxx index 00972829a53c..fb25532855eb 100644 --- a/bridges/inc/cppinterfaceproxy.hxx +++ b/bridges/inc/cppinterfaceproxy.hxx @@ -25,12 +25,12 @@ #include <atomic> #include <cstddef> -#include "rtl/ustring.hxx" -#include "sal/types.h" -#include "typelib/typedescription.h" -#include "uno/dispatcher.h" -#include "uno/environment.h" -#include "vtablefactory.hxx" +#include <rtl/ustring.hxx> +#include <sal/types.h> +#include <typelib/typedescription.h> +#include <uno/dispatcher.h> +#include <uno/environment.h> +#include <vtablefactory.hxx> namespace com { namespace sun { namespace star { namespace uno { class XInterface; diff --git a/bridges/inc/types.hxx b/bridges/inc/types.hxx index 12e8812b5c8e..9612232228e3 100644 --- a/bridges/inc/types.hxx +++ b/bridges/inc/types.hxx @@ -20,8 +20,8 @@ #ifndef INCLUDED_BRIDGES_INC_TYPES_HXX #define INCLUDED_BRIDGES_INC_TYPES_HXX -#include "typelib/typeclass.h" -#include "typelib/typedescription.h" +#include <typelib/typeclass.h> +#include <typelib/typedescription.h> namespace bridges { namespace cpp_uno { namespace shared { diff --git a/bridges/inc/unointerfaceproxy.hxx b/bridges/inc/unointerfaceproxy.hxx index c76b62dd28b0..ba3ddcbb5624 100644 --- a/bridges/inc/unointerfaceproxy.hxx +++ b/bridges/inc/unointerfaceproxy.hxx @@ -25,11 +25,11 @@ #include <atomic> #include <cstddef> -#include "rtl/ustring.hxx" -#include "sal/types.h" -#include "typelib/typedescription.h" -#include "uno/dispatcher.h" -#include "uno/environment.h" +#include <rtl/ustring.hxx> +#include <sal/types.h> +#include <typelib/typedescription.h> +#include <uno/dispatcher.h> +#include <uno/environment.h> namespace com { namespace sun { namespace star { namespace uno { class XInterface; diff --git a/bridges/inc/vtablefactory.hxx b/bridges/inc/vtablefactory.hxx index 3d431efc4409..e099f3b3251a 100644 --- a/bridges/inc/vtablefactory.hxx +++ b/bridges/inc/vtablefactory.hxx @@ -20,11 +20,11 @@ #ifndef INCLUDED_BRIDGES_INC_VTABLEFACTORY_HXX #define INCLUDED_BRIDGES_INC_VTABLEFACTORY_HXX -#include "osl/mutex.hxx" -#include "rtl/alloc.h" -#include "rtl/ustring.hxx" -#include "sal/types.h" -#include "typelib/typedescription.hxx" +#include <osl/mutex.hxx> +#include <rtl/alloc.h> +#include <rtl/ustring.hxx> +#include <sal/types.h> +#include <typelib/typedescription.hxx> #include <unordered_map> diff --git a/bridges/inc/vtables.hxx b/bridges/inc/vtables.hxx index cd4c2f183c02..bf4edc6c3564 100644 --- a/bridges/inc/vtables.hxx +++ b/bridges/inc/vtables.hxx @@ -20,8 +20,8 @@ #ifndef INCLUDED_BRIDGES_INC_VTABLES_HXX #define INCLUDED_BRIDGES_INC_VTABLES_HXX -#include "sal/types.h" -#include "typelib/typedescription.h" +#include <sal/types.h> +#include <typelib/typedescription.h> namespace bridges { namespace cpp_uno { namespace shared { |