From 48f0a5ed3501e0b0a55cc71f85b4d1aee5a9f4ed Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 18 Feb 2015 21:58:05 +0100 Subject: Typos Change-Id: I845a85e1aad4a0708f2b43f7d94606b4b5513ee4 --- framework/inc/macros/xinterface.hxx | 10 +++++----- framework/source/fwi/uielement/constitemcontainer.cxx | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'framework') diff --git a/framework/inc/macros/xinterface.hxx b/framework/inc/macros/xinterface.hxx index 8354a9c185fa..2c2f378639dc 100644 --- a/framework/inc/macros/xinterface.hxx +++ b/framework/inc/macros/xinterface.hxx @@ -46,10 +46,10 @@ namespace framework{ _________________________________________________________________________________________________________________*/ // private -// implementation of XInterface::aquire() +// implementation of XInterface::acquire() // XInterface::release() -#define PRIVATE_DEFINE_XINTERFACE_AQUIRE_RELEASE( CLASS, BASECLASS ) \ +#define PRIVATE_DEFINE_XINTERFACE_ACQUIRE_RELEASE( CLASS, BASECLASS ) \ void SAL_CALL CLASS::acquire() throw() \ { \ /* Don't use mutex in methods of XInterface! */ \ @@ -124,15 +124,15 @@ ________________________________________________________________________________ // complete implementation of XInterface for different use cases #define PRIVATE_DEFINE_XINTERFACE_PURE( CLASS, BASECLASS ) \ - PRIVATE_DEFINE_XINTERFACE_AQUIRE_RELEASE( CLASS, BASECLASS ) \ + PRIVATE_DEFINE_XINTERFACE_ACQUIRE_RELEASE( CLASS, BASECLASS ) \ PRIVATE_DEFINE_XINTERFACE_QUERYINTERFACE_PURE( CLASS, BASECLASS ) #define PRIVATE_DEFINE_XINTERFACE( CLASS, BASECLASS, INTERFACES ) \ - PRIVATE_DEFINE_XINTERFACE_AQUIRE_RELEASE( CLASS, BASECLASS ) \ + PRIVATE_DEFINE_XINTERFACE_ACQUIRE_RELEASE( CLASS, BASECLASS ) \ PRIVATE_DEFINE_XINTERFACE_QUERYINTERFACE( CLASS, BASECLASS, INTERFACES ) #define PRIVATE_DEFINE_XINTERFACE_LARGE( CLASS, BASECLASS, INTERFACES_FIRST, INTERFACES_SECOND ) \ - PRIVATE_DEFINE_XINTERFACE_AQUIRE_RELEASE( CLASS, BASECLASS ) \ + PRIVATE_DEFINE_XINTERFACE_ACQUIRE_RELEASE( CLASS, BASECLASS ) \ PRIVATE_DEFINE_XINTERFACE_QUERYINTERFACE_LARGE( CLASS, BASECLASS, INTERFACES_FIRST, INTERFACES_SECOND ) // private diff --git a/framework/source/fwi/uielement/constitemcontainer.cxx b/framework/source/fwi/uielement/constitemcontainer.cxx index 79a014125ff0..93eb99286a13 100644 --- a/framework/source/fwi/uielement/constitemcontainer.cxx +++ b/framework/source/fwi/uielement/constitemcontainer.cxx @@ -76,7 +76,7 @@ OPropertySetHelperInfo_Impl::OPropertySetHelperInfo_Impl( } /** - * Return the sequence of properties, which are provided throug the constructor. + * Return the sequence of properties, which are provided through the constructor. */ Sequence< Property > OPropertySetHelperInfo_Impl::getProperties(void) throw(::com::sun::star::uno::RuntimeException, std::exception) { @@ -84,7 +84,7 @@ Sequence< Property > OPropertySetHelperInfo_Impl::getProperties(void) throw(::co } /** - * Return the sequence of properties, which are provided throug the constructor. + * Return the sequence of properties, which are provided through the constructor. */ Property OPropertySetHelperInfo_Impl::getPropertyByName( const OUString & PropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::uno::RuntimeException, std::exception) { @@ -100,7 +100,7 @@ Property OPropertySetHelperInfo_Impl::getPropertyByName( const OUString & Proper } /** - * Return the sequence of properties, which are provided throug the constructor. + * Return the sequence of properties, which are provided through the constructor. */ sal_Bool OPropertySetHelperInfo_Impl::hasPropertyByName( const OUString & PropertyName ) throw(::com::sun::star::uno::RuntimeException, std::exception) { -- cgit