summaryrefslogtreecommitdiffstats
path: root/comphelper/source/property/propertycontainerhelper.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-10 09:34:10 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-10 14:50:59 +0200
commitfbc038cc4f4a12f8302ce5b3bd7d739bd66a674e (patch)
treed6cc189748e5980420cc0611b44b28ec4183ea25 /comphelper/source/property/propertycontainerhelper.cxx
parentResolves: tdf#125197 duplicate column checkbox position (diff)
downloadcore-fbc038cc4f4a12f8302ce5b3bd7d739bd66a674e.tar.gz
core-fbc038cc4f4a12f8302ce5b3bd7d739bd66a674e.zip
an uno -> a uno
Change-Id: I538db88f8477dd2d2ad25c372928fec6c11d979d Reviewed-on: https://gerrit.libreoffice.org/72105 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'comphelper/source/property/propertycontainerhelper.cxx')
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/property/propertycontainerhelper.cxx b/comphelper/source/property/propertycontainerhelper.cxx
index 78bdbd6632ef..623ff7bb09eb 100644
--- a/comphelper/source/property/propertycontainerhelper.cxx
+++ b/comphelper/source/property/propertycontainerhelper.cxx
@@ -76,7 +76,7 @@ void OPropertyContainerHelper::registerProperty(const OUString& _rName, sal_Int3
OSL_ENSURE((_nAttributes & PropertyAttribute::MAYBEVOID) == 0,
"OPropertyContainerHelper::registerProperty: don't use this for properties which may be void ! There is a method called \"registerMayBeVoidProperty\" for this !");
OSL_ENSURE(!_rMemberType.equals(cppu::UnoType<Any>::get()),
- "OPropertyContainerHelper::registerProperty: don't give my the type of an uno::Any ! Really can't handle this !");
+ "OPropertyContainerHelper::registerProperty: don't give my the type of a uno::Any ! Really can't handle this !");
OSL_ENSURE(_pPointerToMember,
"OPropertyContainerHelper::registerProperty: you gave me nonsense : the pointer must be non-NULL");
@@ -104,7 +104,7 @@ void OPropertyContainerHelper::registerMayBeVoidProperty(const OUString& _rName,
OSL_ENSURE((_nAttributes & PropertyAttribute::MAYBEVOID) != 0,
"OPropertyContainerHelper::registerMayBeVoidProperty: why calling this when the attributes say nothing about may-be-void ?");
OSL_ENSURE(!_rExpectedType.equals(cppu::UnoType<Any>::get()),
- "OPropertyContainerHelper::registerMayBeVoidProperty: don't give my the type of an uno::Any ! Really can't handle this !");
+ "OPropertyContainerHelper::registerMayBeVoidProperty: don't give my the type of a uno::Any ! Really can't handle this !");
OSL_ENSURE(_pPointerToMember,
"OPropertyContainerHelper::registerMayBeVoidProperty: you gave me nonsense : the pointer must be non-NULL");
@@ -123,7 +123,7 @@ void OPropertyContainerHelper::registerPropertyNoMember(const OUString& _rName,
const Type& _rType, css::uno::Any const & _pInitialValue)
{
OSL_ENSURE(!_rType.equals(cppu::UnoType<Any>::get()),
- "OPropertyContainerHelper::registerPropertyNoMember : don't give my the type of an uno::Any ! Really can't handle this !");
+ "OPropertyContainerHelper::registerPropertyNoMember : don't give my the type of a uno::Any ! Really can't handle this !");
OSL_ENSURE(
(_pInitialValue.isExtractableTo(_rType)
|| (!_pInitialValue.hasValue()