diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-06-04 16:23:19 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-04 21:18:39 +0200 |
commit | 530899ba181cf7ae34c99ee061958b9e540082b6 (patch) | |
tree | c8ad79fcf19fe64376ca3c31fcd487b29f1ac6f4 /cppuhelper/source | |
parent | a2db194ea0eee4deb6401f6352144e5be077c140 (diff) |
cppuhelper: fix includes
Change-Id: I0e6bc822d19cf266dea716fe92f2ccd08d87c51f
Diffstat (limited to 'cppuhelper/source')
26 files changed, 255 insertions, 255 deletions
diff --git a/cppuhelper/source/bootstrap.cxx b/cppuhelper/source/bootstrap.cxx index ae2a9f00ba56..4cfaafdb8caa 100644 --- a/cppuhelper/source/bootstrap.cxx +++ b/cppuhelper/source/bootstrap.cxx @@ -17,28 +17,28 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include <sal/config.h> #include <cstring> -#include "rtl/process.h" -#include "rtl/bootstrap.hxx" -#include "rtl/random.h" -#include "rtl/string.hxx" -#include "rtl/ustrbuf.hxx" -#include "rtl/uri.hxx" -#include "osl/diagnose.h" -#include "osl/file.hxx" -#include "osl/security.hxx" -#include "osl/thread.hxx" +#include <rtl/process.h> +#include <rtl/bootstrap.hxx> +#include <rtl/random.h> +#include <rtl/string.hxx> +#include <rtl/ustrbuf.hxx> +#include <rtl/uri.hxx> +#include <osl/diagnose.h> +#include <osl/file.hxx> +#include <osl/security.hxx> +#include <osl/thread.hxx> -#include "cppuhelper/bootstrap.hxx" -#include "cppuhelper/findsofficepath.h" +#include <cppuhelper/bootstrap.hxx> +#include <cppuhelper/findsofficepath.h> -#include "com/sun/star/uno/XComponentContext.hpp" +#include <com/sun/star/uno/XComponentContext.hpp> -#include "com/sun/star/bridge/UnoUrlResolver.hpp" -#include "com/sun/star/bridge/XUnoUrlResolver.hpp" +#include <com/sun/star/bridge/UnoUrlResolver.hpp> +#include <com/sun/star/bridge/XUnoUrlResolver.hpp> #include "macro_expander.hxx" diff --git a/cppuhelper/source/compat.cxx b/cppuhelper/source/compat.cxx index 97605b01826b..b06f4407afcf 100644 --- a/cppuhelper/source/compat.cxx +++ b/cppuhelper/source/compat.cxx @@ -17,16 +17,16 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include <sal/config.h> #include <cstdlib> -#include "com/sun/star/loader/CannotActivateFactoryException.hpp" -#include "com/sun/star/uno/Exception.hpp" -#include "com/sun/star/uno/Reference.hxx" -#include "com/sun/star/uno/Sequence.hxx" -#include "osl/module.h" -#include "sal/types.h" +#include <com/sun/star/loader/CannotActivateFactoryException.hpp> +#include <com/sun/star/uno/Exception.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/Sequence.hxx> +#include <osl/module.h> +#include <sal/types.h> namespace com { namespace sun { namespace star { namespace lang { diff --git a/cppuhelper/source/component.cxx b/cppuhelper/source/component.cxx index b120fc6b4ed4..1b1e4522bf37 100644 --- a/cppuhelper/source/component.cxx +++ b/cppuhelper/source/component.cxx @@ -22,7 +22,7 @@ #include <cppuhelper/component.hxx> #include <cppuhelper/queryinterface.hxx> #include <cppuhelper/typeprovider.hxx> -#include "com/sun/star/uno/RuntimeException.hpp" +#include <com/sun/star/uno/RuntimeException.hpp> using namespace osl; using namespace com::sun::star; diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx index 85f0316daf32..b211bd75a0ee 100644 --- a/cppuhelper/source/component_context.cxx +++ b/cppuhelper/source/component_context.cxx @@ -51,8 +51,8 @@ #include <com/sun/star/lang/XMultiComponentFactory.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/beans/XPropertySet.hpp> -#include "com/sun/star/uno/DeploymentException.hpp" -#include "com/sun/star/uno/RuntimeException.hpp" +#include <com/sun/star/uno/DeploymentException.hpp> +#include <com/sun/star/uno/RuntimeException.hpp> #define SMGR_SINGLETON "/singletons/com.sun.star.lang.theServiceManager" #define TDMGR_SINGLETON "/singletons/com.sun.star.reflection.theTypeDescriptionManager" diff --git a/cppuhelper/source/defaultbootstrap.cxx b/cppuhelper/source/defaultbootstrap.cxx index 98d36c478989..882862b0d992 100644 --- a/cppuhelper/source/defaultbootstrap.cxx +++ b/cppuhelper/source/defaultbootstrap.cxx @@ -7,20 +7,20 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "sal/config.h" +#include <sal/config.h> #include <cassert> #include <vector> -#include "com/sun/star/uno/DeploymentException.hpp" -#include "com/sun/star/uno/Any.hxx" -#include "com/sun/star/uno/Reference.hxx" -#include "com/sun/star/uno/XComponentContext.hpp" -#include "cppuhelper/bootstrap.hxx" -#include "cppuhelper/component_context.hxx" -#include "rtl/bootstrap.hxx" -#include "rtl/ref.hxx" -#include "rtl/ustring.hxx" +#include <com/sun/star/uno/DeploymentException.hpp> +#include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/XComponentContext.hpp> +#include <cppuhelper/bootstrap.hxx> +#include <cppuhelper/component_context.hxx> +#include <rtl/bootstrap.hxx> +#include <rtl/ref.hxx> +#include <rtl/ustring.hxx> using rtl::OUString; diff --git a/cppuhelper/source/exc_thrower.cxx b/cppuhelper/source/exc_thrower.cxx index c307cf378767..b4b21f8059b5 100644 --- a/cppuhelper/source/exc_thrower.cxx +++ b/cppuhelper/source/exc_thrower.cxx @@ -18,17 +18,17 @@ */ -#include "rtl/instance.hxx" -#include "osl/diagnose.h" -#include "osl/doublecheckedlocking.h" -#include "osl/mutex.hxx" -#include "uno/dispatcher.hxx" +#include <rtl/instance.hxx> +#include <osl/diagnose.h> +#include <osl/doublecheckedlocking.h> +#include <osl/mutex.hxx> +#include <uno/dispatcher.hxx> #include <uno/lbnames.h> -#include "uno/mapping.hxx" -#include "cppuhelper/detail/XExceptionThrower.hpp" -#include "com/sun/star/uno/RuntimeException.hpp" +#include <uno/mapping.hxx> +#include <cppuhelper/detail/XExceptionThrower.hpp> +#include <com/sun/star/uno/RuntimeException.hpp> -#include "cppuhelper/exc_hlp.hxx" +#include <cppuhelper/exc_hlp.hxx> using namespace ::osl; using namespace ::cppu; diff --git a/cppuhelper/source/factory.cxx b/cppuhelper/source/factory.cxx index 460f11929d18..4c76251864af 100644 --- a/cppuhelper/source/factory.cxx +++ b/cppuhelper/source/factory.cxx @@ -30,7 +30,7 @@ #include <rtl/instance.hxx> #include <rtl/unload.h> -#include "cppuhelper/propshlp.hxx" +#include <cppuhelper/propshlp.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> @@ -40,7 +40,7 @@ #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/uno/XUnloadingPreference.hpp> -#include "com/sun/star/beans/PropertyAttribute.hpp" +#include <com/sun/star/beans/PropertyAttribute.hpp> #include <memory> diff --git a/cppuhelper/source/findsofficepath.c b/cppuhelper/source/findsofficepath.c index 903b91bde303..14ecacb91f62 100644 --- a/cppuhelper/source/findsofficepath.c +++ b/cppuhelper/source/findsofficepath.c @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include <sal/config.h> #include <stdlib.h> #include <string.h> diff --git a/cppuhelper/source/implbase.cxx b/cppuhelper/source/implbase.cxx index 2e7d14ba6978..97d240aa5d78 100644 --- a/cppuhelper/source/implbase.cxx +++ b/cppuhelper/source/implbase.cxx @@ -24,7 +24,7 @@ #include <rtl/string.hxx> #include <com/sun/star/lang/XComponent.hpp> -#include "com/sun/star/uno/RuntimeException.hpp" +#include <com/sun/star/uno/RuntimeException.hpp> using namespace ::osl; using namespace ::com::sun::star; diff --git a/cppuhelper/source/implbase_ex.cxx b/cppuhelper/source/implbase_ex.cxx index 2aa3e1d375d7..57359a37a7d7 100644 --- a/cppuhelper/source/implbase_ex.cxx +++ b/cppuhelper/source/implbase_ex.cxx @@ -26,7 +26,7 @@ #include <rtl/uuid.h> #include <cppuhelper/compbase_ex.hxx> -#include "com/sun/star/uno/RuntimeException.hpp" +#include <com/sun/star/uno/RuntimeException.hpp> using namespace ::cppu; using namespace ::osl; diff --git a/cppuhelper/source/loadsharedlibcomponentfactory.hxx b/cppuhelper/source/loadsharedlibcomponentfactory.hxx index 7f3de191b698..7062d86fc494 100644 --- a/cppuhelper/source/loadsharedlibcomponentfactory.hxx +++ b/cppuhelper/source/loadsharedlibcomponentfactory.hxx @@ -14,7 +14,7 @@ #include <com/sun/star/uno/Reference.hxx> -#include <servicemanager.hxx> +#include "servicemanager.hxx" namespace com { namespace sun { namespace star { namespace lang { class XMultiServiceFactory; } diff --git a/cppuhelper/source/macro_expander.cxx b/cppuhelper/source/macro_expander.cxx index f12c9ee96464..65bff1004b8b 100644 --- a/cppuhelper/source/macro_expander.cxx +++ b/cppuhelper/source/macro_expander.cxx @@ -30,7 +30,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/util/XMacroExpander.hpp> -#include "com/sun/star/uno/RuntimeException.hpp" +#include <com/sun/star/uno/RuntimeException.hpp> #include "macro_expander.hxx" #include "paths.hxx" diff --git a/cppuhelper/source/macro_expander.hxx b/cppuhelper/source/macro_expander.hxx index 67716ebf6a34..83ceddb00066 100644 --- a/cppuhelper/source/macro_expander.hxx +++ b/cppuhelper/source/macro_expander.hxx @@ -20,10 +20,10 @@ #ifndef INCLUDED_CPPUHELPER_SOURCE_MACRO_EXPANDER_HXX #define INCLUDED_CPPUHELPER_SOURCE_MACRO_EXPANDER_HXX -#include "sal/config.h" +#include <sal/config.h> -#include "com/sun/star/uno/Reference.hxx" -#include "sal/types.h" +#include <com/sun/star/uno/Reference.hxx> +#include <sal/types.h> namespace com { namespace sun { namespace star { namespace lang { class XSingleComponentFactory; diff --git a/cppuhelper/source/paths.cxx b/cppuhelper/source/paths.cxx index 2f021d6ac794..1f15f51e6612 100644 --- a/cppuhelper/source/paths.cxx +++ b/cppuhelper/source/paths.cxx @@ -20,18 +20,18 @@ #include <config_features.h> #include <config_folders.h> -#include "sal/config.h" +#include <sal/config.h> #include <cassert> -#include "com/sun/star/uno/DeploymentException.hpp" -#include "com/sun/star/uno/Reference.hxx" -#include "com/sun/star/uno/XInterface.hpp" -#include "osl/file.hxx" -#include "osl/module.hxx" -#include "osl/mutex.hxx" -#include "rtl/ustring.hxx" -#include "sal/types.h" +#include <com/sun/star/uno/DeploymentException.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/XInterface.hpp> +#include <osl/file.hxx> +#include <osl/module.hxx> +#include <osl/mutex.hxx> +#include <rtl/ustring.hxx> +#include <sal/types.h> #include "paths.hxx" diff --git a/cppuhelper/source/paths.hxx b/cppuhelper/source/paths.hxx index 7af92b6fda2b..b7fde71d0726 100644 --- a/cppuhelper/source/paths.hxx +++ b/cppuhelper/source/paths.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_CPPUHELPER_SOURCE_PATHS_HXX #define INCLUDED_CPPUHELPER_SOURCE_PATHS_HXX -#include "sal/config.h" +#include <sal/config.h> namespace osl { class Directory; } namespace rtl { class OUString; } diff --git a/cppuhelper/source/propertysetmixin.cxx b/cppuhelper/source/propertysetmixin.cxx index cdeaca5bdc13..b20cfe20cb95 100644 --- a/cppuhelper/source/propertysetmixin.cxx +++ b/cppuhelper/source/propertysetmixin.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> @@ -26,54 +26,54 @@ #include <set> #include <vector> -#include "com/sun/star/beans/Property.hpp" -#include "com/sun/star/beans/PropertyChangeEvent.hpp" -#include "com/sun/star/beans/PropertyAttribute.hpp" -#include "com/sun/star/beans/PropertyValue.hpp" -#include "com/sun/star/beans/PropertyVetoException.hpp" -#include "com/sun/star/beans/UnknownPropertyException.hpp" -#include "com/sun/star/beans/XFastPropertySet.hpp" -#include "com/sun/star/beans/XPropertyAccess.hpp" -#include "com/sun/star/beans/XPropertyChangeListener.hpp" -#include "com/sun/star/beans/XPropertySet.hpp" -#include "com/sun/star/beans/XPropertySetInfo.hpp" -#include "com/sun/star/beans/XVetoableChangeListener.hpp" -#include "com/sun/star/container/NoSuchElementException.hpp" -#include "com/sun/star/container/XHierarchicalNameAccess.hpp" -#include "com/sun/star/lang/DisposedException.hpp" -#include "com/sun/star/lang/EventObject.hpp" -#include "com/sun/star/lang/IllegalAccessException.hpp" -#include "com/sun/star/lang/IllegalArgumentException.hpp" -#include "com/sun/star/lang/WrappedTargetException.hpp" -#include "com/sun/star/lang/WrappedTargetRuntimeException.hpp" -#include "com/sun/star/reflection/XCompoundTypeDescription.hpp" -#include "com/sun/star/reflection/XIdlClass.hpp" -#include "com/sun/star/reflection/XIdlField2.hpp" -#include "com/sun/star/reflection/XIndirectTypeDescription.hpp" -#include "com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp" -#include "com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp" -#include "com/sun/star/reflection/XInterfaceTypeDescription2.hpp" -#include "com/sun/star/reflection/XStructTypeDescription.hpp" -#include "com/sun/star/reflection/XTypeDescription.hpp" -#include "com/sun/star/reflection/theCoreReflection.hpp" -#include "com/sun/star/uno/Any.hxx" -#include "com/sun/star/uno/DeploymentException.hpp" -#include "com/sun/star/uno/Exception.hpp" -#include "com/sun/star/uno/Reference.hxx" -#include "com/sun/star/uno/RuntimeException.hpp" -#include "com/sun/star/uno/Sequence.hxx" -#include "com/sun/star/uno/Type.hxx" -#include "com/sun/star/uno/TypeClass.hpp" -#include "com/sun/star/uno/XComponentContext.hpp" -#include "com/sun/star/uno/XInterface.hpp" -#include "cppuhelper/implbase1.hxx" -#include "cppuhelper/propertysetmixin.hxx" -#include "cppuhelper/weak.hxx" -#include "osl/mutex.hxx" -#include "rtl/ref.hxx" -#include "rtl/ustring.hxx" -#include "sal/types.h" -#include "salhelper/simplereferenceobject.hxx" +#include <com/sun/star/beans/Property.hpp> +#include <com/sun/star/beans/PropertyChangeEvent.hpp> +#include <com/sun/star/beans/PropertyAttribute.hpp> +#include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/beans/PropertyVetoException.hpp> +#include <com/sun/star/beans/UnknownPropertyException.hpp> +#include <com/sun/star/beans/XFastPropertySet.hpp> +#include <com/sun/star/beans/XPropertyAccess.hpp> +#include <com/sun/star/beans/XPropertyChangeListener.hpp> +#include <com/sun/star/beans/XPropertySet.hpp> +#include <com/sun/star/beans/XPropertySetInfo.hpp> +#include <com/sun/star/beans/XVetoableChangeListener.hpp> +#include <com/sun/star/container/NoSuchElementException.hpp> +#include <com/sun/star/container/XHierarchicalNameAccess.hpp> +#include <com/sun/star/lang/DisposedException.hpp> +#include <com/sun/star/lang/EventObject.hpp> +#include <com/sun/star/lang/IllegalAccessException.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/lang/WrappedTargetException.hpp> +#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> +#include <com/sun/star/reflection/XCompoundTypeDescription.hpp> +#include <com/sun/star/reflection/XIdlClass.hpp> +#include <com/sun/star/reflection/XIdlField2.hpp> +#include <com/sun/star/reflection/XIndirectTypeDescription.hpp> +#include <com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp> +#include <com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp> +#include <com/sun/star/reflection/XInterfaceTypeDescription2.hpp> +#include <com/sun/star/reflection/XStructTypeDescription.hpp> +#include <com/sun/star/reflection/XTypeDescription.hpp> +#include <com/sun/star/reflection/theCoreReflection.hpp> +#include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/uno/DeploymentException.hpp> +#include <com/sun/star/uno/Exception.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> +#include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/Type.hxx> +#include <com/sun/star/uno/TypeClass.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> +#include <com/sun/star/uno/XInterface.hpp> +#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/propertysetmixin.hxx> +#include <cppuhelper/weak.hxx> +#include <osl/mutex.hxx> +#include <rtl/ref.hxx> +#include <rtl/ustring.hxx> +#include <sal/types.h> +#include <salhelper/simplereferenceobject.hxx> using cppu::PropertySetMixinImpl; diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx index 37610f94c3a7..53f3aebd81b7 100644 --- a/cppuhelper/source/propshlp.cxx +++ b/cppuhelper/source/propshlp.cxx @@ -18,13 +18,13 @@ */ -#include "osl/diagnose.h" -#include "cppuhelper/implbase1.hxx" -#include "cppuhelper/weak.hxx" -#include "cppuhelper/propshlp.hxx" -#include "cppuhelper/exc_hlp.hxx" -#include "com/sun/star/beans/PropertyAttribute.hpp" -#include "com/sun/star/lang/DisposedException.hpp" +#include <osl/diagnose.h> +#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/weak.hxx> +#include <cppuhelper/propshlp.hxx> +#include <cppuhelper/exc_hlp.hxx> +#include <com/sun/star/beans/PropertyAttribute.hpp> +#include <com/sun/star/lang/DisposedException.hpp> using namespace osl; diff --git a/cppuhelper/source/servicemanager.cxx b/cppuhelper/source/servicemanager.cxx index 4aca8d14a2b0..d682cd60636f 100644 --- a/cppuhelper/source/servicemanager.cxx +++ b/cppuhelper/source/servicemanager.cxx @@ -7,50 +7,50 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "sal/config.h" +#include <sal/config.h> #include <algorithm> #include <cassert> #include <vector> -#include "boost/noncopyable.hpp" -#include "boost/shared_ptr.hpp" -#include "com/sun/star/beans/NamedValue.hpp" -#include "com/sun/star/beans/PropertyAttribute.hpp" -#include "com/sun/star/container/ElementExistException.hpp" -#include "com/sun/star/container/XEnumeration.hpp" -#include "com/sun/star/container/XNameContainer.hpp" -#include "com/sun/star/lang/XInitialization.hpp" -#include "com/sun/star/lang/XServiceInfo.hpp" -#include "com/sun/star/lang/XSingleComponentFactory.hpp" -#include "com/sun/star/lang/XSingleServiceFactory.hpp" -#include "com/sun/star/loader/XImplementationLoader.hpp" -#include "com/sun/star/registry/InvalidRegistryException.hpp" -#include "com/sun/star/uno/DeploymentException.hpp" -#include "com/sun/star/uno/Reference.hxx" -#include "com/sun/star/uno/XComponentContext.hpp" -#include "cppuhelper/bootstrap.hxx" -#include "cppuhelper/component_context.hxx" -#include "cppuhelper/implbase1.hxx" -#include "cppuhelper/implbase3.hxx" -#include "cppuhelper/shlib.hxx" -#include "cppuhelper/supportsservice.hxx" -#include "osl/file.hxx" -#include "rtl/ref.hxx" -#include "rtl/uri.hxx" -#include "rtl/ustring.hxx" -#include "rtl/strbuf.hxx" -#include "sal/log.hxx" -#include "uno/environment.hxx" - -#include <loadsharedlibcomponentfactory.hxx> +#include <boost/noncopyable.hpp> +#include <boost/shared_ptr.hpp> +#include <com/sun/star/beans/NamedValue.hpp> +#include <com/sun/star/beans/PropertyAttribute.hpp> +#include <com/sun/star/container/ElementExistException.hpp> +#include <com/sun/star/container/XEnumeration.hpp> +#include <com/sun/star/container/XNameContainer.hpp> +#include <com/sun/star/lang/XInitialization.hpp> +#include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/lang/XSingleComponentFactory.hpp> +#include <com/sun/star/lang/XSingleServiceFactory.hpp> +#include <com/sun/star/loader/XImplementationLoader.hpp> +#include <com/sun/star/registry/InvalidRegistryException.hpp> +#include <com/sun/star/uno/DeploymentException.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/XComponentContext.hpp> +#include <cppuhelper/bootstrap.hxx> +#include <cppuhelper/component_context.hxx> +#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/shlib.hxx> +#include <cppuhelper/supportsservice.hxx> +#include <osl/file.hxx> +#include <rtl/ref.hxx> +#include <rtl/uri.hxx> +#include <rtl/ustring.hxx> +#include <rtl/strbuf.hxx> +#include <sal/log.hxx> +#include <uno/environment.hxx> + +#include "loadsharedlibcomponentfactory.hxx" using rtl::OUString; using rtl::OString; using rtl::OStringBuffer; -#include "registry/registry.hxx" -#include "xmlreader/xmlreader.hxx" +#include <registry/registry.hxx> +#include <xmlreader/xmlreader.hxx> #include "paths.hxx" #include "servicemanager.hxx" diff --git a/cppuhelper/source/servicemanager.hxx b/cppuhelper/source/servicemanager.hxx index 644fc21969f0..903084b11eef 100644 --- a/cppuhelper/source/servicemanager.hxx +++ b/cppuhelper/source/servicemanager.hxx @@ -10,31 +10,31 @@ #ifndef INCLUDED_CPPUHELPER_SOURCE_SERVICEMANAGER_HXX #define INCLUDED_CPPUHELPER_SOURCE_SERVICEMANAGER_HXX -#include "sal/config.h" +#include <sal/config.h> #include <cassert> #include <map> #include <vector> -#include "boost/noncopyable.hpp" -#include "boost/shared_ptr.hpp" -#include "com/sun/star/beans/XPropertySet.hpp" -#include "com/sun/star/beans/XPropertySetInfo.hpp" -#include "com/sun/star/container/XContentEnumerationAccess.hpp" -#include "com/sun/star/container/XSet.hpp" -#include "com/sun/star/lang/XEventListener.hpp" -#include "com/sun/star/lang/XMultiComponentFactory.hpp" -#include "com/sun/star/lang/XMultiServiceFactory.hpp" -#include "com/sun/star/lang/XServiceInfo.hpp" -#include "com/sun/star/lang/XSingleServiceFactory.hpp" -#include "com/sun/star/uno/XComponentContext.hpp" -#include "com/sun/star/uno/Reference.hxx" -#include "cppuhelper/basemutex.hxx" -#include "cppuhelper/compbase8.hxx" -#include "osl/mutex.hxx" -#include "registry/registry.hxx" -#include "rtl/ustring.hxx" -#include "cppuhelper/weak.hxx" +#include <boost/noncopyable.hpp> +#include <boost/shared_ptr.hpp> +#include <com/sun/star/beans/XPropertySet.hpp> +#include <com/sun/star/beans/XPropertySetInfo.hpp> +#include <com/sun/star/container/XContentEnumerationAccess.hpp> +#include <com/sun/star/container/XSet.hpp> +#include <com/sun/star/lang/XEventListener.hpp> +#include <com/sun/star/lang/XMultiComponentFactory.hpp> +#include <com/sun/star/lang/XMultiServiceFactory.hpp> +#include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/lang/XSingleServiceFactory.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <cppuhelper/basemutex.hxx> +#include <cppuhelper/compbase8.hxx> +#include <osl/mutex.hxx> +#include <registry/registry.hxx> +#include <rtl/ustring.hxx> +#include <cppuhelper/weak.hxx> namespace com { namespace sun { namespace star { namespace lang { class XSingleComponentFactory; diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index debbdb08c33c..65d0e5654f3e 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -29,7 +29,7 @@ #include <uno/environment.hxx> #include <uno/mapping.hxx> -#include <loadsharedlibcomponentfactory.hxx> +#include "loadsharedlibcomponentfactory.hxx" #if defined DISABLE_DYNLOADING #include <osl/detail/component-mapping.h> diff --git a/cppuhelper/source/supportsservice.cxx b/cppuhelper/source/supportsservice.cxx index afef759b965a..b624f6d496ed 100644 --- a/cppuhelper/source/supportsservice.cxx +++ b/cppuhelper/source/supportsservice.cxx @@ -7,15 +7,15 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "sal/config.h" +#include <sal/config.h> #include <cassert> -#include "com/sun/star/lang/XServiceInfo.hpp" -#include "com/sun/star/uno/Sequence.hxx" -#include "cppuhelper/supportsservice.hxx" -#include "rtl/ustring.hxx" -#include "sal/types.h" +#include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/uno/Sequence.hxx> +#include <cppuhelper/supportsservice.hxx> +#include <rtl/ustring.hxx> +#include <sal/types.h> bool cppu::supportsService( css::lang::XServiceInfo * implementation, rtl::OUString const & name) diff --git a/cppuhelper/source/tdmgr.cxx b/cppuhelper/source/tdmgr.cxx index 2e94ac6c7ed2..e318ceb3b64a 100644 --- a/cppuhelper/source/tdmgr.cxx +++ b/cppuhelper/source/tdmgr.cxx @@ -18,7 +18,7 @@ */ -#include "sal/config.h" +#include <sal/config.h> #include <vector> @@ -47,9 +47,9 @@ #include <com/sun/star/reflection/XInterfaceTypeDescription2.hpp> #include <com/sun/star/reflection/XCompoundTypeDescription.hpp> #include <com/sun/star/reflection/XStructTypeDescription.hpp> -#include "com/sun/star/uno/RuntimeException.hpp" +#include <com/sun/star/uno/RuntimeException.hpp> -#include "boost/scoped_array.hpp" +#include <boost/scoped_array.hpp> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/cppuhelper/source/typemanager.cxx b/cppuhelper/source/typemanager.cxx index 459671a6235d..84c749b1b658 100644 --- a/cppuhelper/source/typemanager.cxx +++ b/cppuhelper/source/typemanager.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "sal/config.h" +#include <sal/config.h> #include <cassert> #include <cstddef> @@ -17,47 +17,47 @@ #include <stack> #include <vector> -#include "boost/noncopyable.hpp" -#include "com/sun/star/container/ElementExistException.hpp" -#include "com/sun/star/container/NoSuchElementException.hpp" -#include "com/sun/star/lang/IllegalArgumentException.hpp" -#include "com/sun/star/reflection/InvalidTypeNameException.hpp" -#include "com/sun/star/reflection/NoSuchTypeNameException.hpp" -#include "com/sun/star/reflection/TypeDescriptionSearchDepth.hpp" -#include "com/sun/star/reflection/XConstantTypeDescription.hpp" -#include "com/sun/star/reflection/XConstantsTypeDescription.hpp" -#include "com/sun/star/reflection/XEnumTypeDescription.hpp" -#include "com/sun/star/reflection/XIndirectTypeDescription.hpp" -#include "com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp" -#include "com/sun/star/reflection/XInterfaceMethodTypeDescription.hpp" -#include "com/sun/star/reflection/XInterfaceTypeDescription2.hpp" -#include "com/sun/star/reflection/XModuleTypeDescription.hpp" -#include "com/sun/star/reflection/XPublished.hpp" -#include "com/sun/star/reflection/XServiceTypeDescription2.hpp" -#include "com/sun/star/reflection/XSingletonTypeDescription2.hpp" -#include "com/sun/star/reflection/XStructTypeDescription.hpp" -#include "com/sun/star/reflection/XTypeDescription.hpp" -#include "com/sun/star/uno/Any.hxx" -#include "com/sun/star/uno/DeploymentException.hpp" -#include "com/sun/star/uno/Reference.hxx" -#include "com/sun/star/uno/RuntimeException.hpp" -#include "com/sun/star/uno/Sequence.hxx" -#include "com/sun/star/uno/Type.hxx" -#include "com/sun/star/uno/TypeClass.hpp" -#include "cppu/unotype.hxx" -#include "cppuhelper/implbase1.hxx" -#include "cppuhelper/supportsservice.hxx" -#include "osl/file.hxx" -#include "osl/mutex.hxx" -#include "rtl/ref.hxx" -#include "rtl/string.h" -#include "rtl/ustring.hxx" -#include "sal/macros.h" -#include "sal/types.h" +#include <boost/noncopyable.hpp> +#include <com/sun/star/container/ElementExistException.hpp> +#include <com/sun/star/container/NoSuchElementException.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/reflection/InvalidTypeNameException.hpp> +#include <com/sun/star/reflection/NoSuchTypeNameException.hpp> +#include <com/sun/star/reflection/TypeDescriptionSearchDepth.hpp> +#include <com/sun/star/reflection/XConstantTypeDescription.hpp> +#include <com/sun/star/reflection/XConstantsTypeDescription.hpp> +#include <com/sun/star/reflection/XEnumTypeDescription.hpp> +#include <com/sun/star/reflection/XIndirectTypeDescription.hpp> +#include <com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp> +#include <com/sun/star/reflection/XInterfaceMethodTypeDescription.hpp> +#include <com/sun/star/reflection/XInterfaceTypeDescription2.hpp> +#include <com/sun/star/reflection/XModuleTypeDescription.hpp> +#include <com/sun/star/reflection/XPublished.hpp> +#include <com/sun/star/reflection/XServiceTypeDescription2.hpp> +#include <com/sun/star/reflection/XSingletonTypeDescription2.hpp> +#include <com/sun/star/reflection/XStructTypeDescription.hpp> +#include <com/sun/star/reflection/XTypeDescription.hpp> +#include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/uno/DeploymentException.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> +#include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/Type.hxx> +#include <com/sun/star/uno/TypeClass.hpp> +#include <cppu/unotype.hxx> +#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/supportsservice.hxx> +#include <osl/file.hxx> +#include <osl/mutex.hxx> +#include <rtl/ref.hxx> +#include <rtl/string.h> +#include <rtl/ustring.hxx> +#include <sal/macros.h> +#include <sal/types.h> using rtl::OUString; -#include "unoidl/unoidl.hxx" +#include <unoidl/unoidl.hxx> #include "paths.hxx" #include "typemanager.hxx" diff --git a/cppuhelper/source/typemanager.hxx b/cppuhelper/source/typemanager.hxx index f4546e8a19f8..8b55b27b1696 100644 --- a/cppuhelper/source/typemanager.hxx +++ b/cppuhelper/source/typemanager.hxx @@ -10,25 +10,25 @@ #ifndef INCLUDED_CPPUHELPER_SOURCE_TYPEMANAGER_HXX #define INCLUDED_CPPUHELPER_SOURCE_TYPEMANAGER_HXX -#include "sal/config.h" - -#include "com/sun/star/container/ElementExistException.hpp" -#include "com/sun/star/container/NoSuchElementException.hpp" -#include "com/sun/star/container/XHierarchicalNameAccess.hpp" -#include "com/sun/star/container/XSet.hpp" -#include "com/sun/star/lang/IllegalArgumentException.hpp" -#include "com/sun/star/lang/XServiceInfo.hpp" -#include "com/sun/star/reflection/InvalidTypeNameException.hpp" -#include "com/sun/star/reflection/NoSuchTypeNameException.hpp" -#include "com/sun/star/reflection/TypeDescriptionSearchDepth.hpp" -#include "com/sun/star/reflection/XTypeDescriptionEnumerationAccess.hpp" -#include "com/sun/star/uno/Reference.hxx" -#include "com/sun/star/uno/RuntimeException.hpp" -#include "com/sun/star/uno/Sequence.hxx" -#include "cppuhelper/basemutex.hxx" -#include "cppuhelper/compbase4.hxx" -#include "rtl/ref.hxx" -#include "sal/types.h" +#include <sal/config.h> + +#include <com/sun/star/container/ElementExistException.hpp> +#include <com/sun/star/container/NoSuchElementException.hpp> +#include <com/sun/star/container/XHierarchicalNameAccess.hpp> +#include <com/sun/star/container/XSet.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/reflection/InvalidTypeNameException.hpp> +#include <com/sun/star/reflection/NoSuchTypeNameException.hpp> +#include <com/sun/star/reflection/TypeDescriptionSearchDepth.hpp> +#include <com/sun/star/reflection/XTypeDescriptionEnumerationAccess.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> +#include <com/sun/star/uno/Sequence.hxx> +#include <cppuhelper/basemutex.hxx> +#include <cppuhelper/compbase4.hxx> +#include <rtl/ref.hxx> +#include <sal/types.h> namespace com { namespace sun { namespace star { namespace uno { class Any; } diff --git a/cppuhelper/source/unourl.cxx b/cppuhelper/source/unourl.cxx index 9561aeba60e6..14bde29473d9 100644 --- a/cppuhelper/source/unourl.cxx +++ b/cppuhelper/source/unourl.cxx @@ -18,17 +18,17 @@ */ -#include "cppuhelper/unourl.hxx" - -#include "osl/diagnose.h" -#include "rtl/malformeduriexception.hxx" -#include "rtl/string.h" -#include "rtl/textenc.h" -#include "rtl/uri.h" -#include "rtl/uri.hxx" -#include "rtl/ustring.h" -#include "rtl/ustring.hxx" -#include "sal/types.h" +#include <cppuhelper/unourl.hxx> + +#include <osl/diagnose.h> +#include <rtl/malformeduriexception.hxx> +#include <rtl/string.h> +#include <rtl/textenc.h> +#include <rtl/uri.h> +#include <rtl/uri.hxx> +#include <rtl/ustring.h> +#include <rtl/ustring.hxx> +#include <sal/types.h> #include <map> diff --git a/cppuhelper/source/weak.cxx b/cppuhelper/source/weak.cxx index d75e16c2147e..0736d8ed3ae4 100644 --- a/cppuhelper/source/weak.cxx +++ b/cppuhelper/source/weak.cxx @@ -23,7 +23,7 @@ #include <osl/mutex.hxx> #include <cppuhelper/weakagg.hxx> #include <cppuhelper/interfacecontainer.hxx> -#include "cppuhelper/exc_hlp.hxx" +#include <cppuhelper/exc_hlp.hxx> using namespace osl; using namespace com::sun::star::uno; |