summaryrefslogtreecommitdiffstats
path: root/cppuhelper/source/typemanager.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-09-12 13:15:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-12 13:15:08 +0200
commit905e862c80d1496485cd744bd63f27103d979fa1 (patch)
tree7fe135a0ff59b676c81cec8719af3f6542e2701b /cppuhelper/source/typemanager.hxx
parentuse ';' instead of ':' to separate two parts of a string (diff)
downloadcore-905e862c80d1496485cd744bd63f27103d979fa1.tar.gz
core-905e862c80d1496485cd744bd63f27103d979fa1.zip
Pass by const ref
Change-Id: Iacbb07d6478901be77feb253f526614800564c0f
Diffstat (limited to 'cppuhelper/source/typemanager.hxx')
-rw-r--r--cppuhelper/source/typemanager.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/cppuhelper/source/typemanager.hxx b/cppuhelper/source/typemanager.hxx
index a1a2108409fe..3cd6a7519364 100644
--- a/cppuhelper/source/typemanager.hxx
+++ b/cppuhelper/source/typemanager.hxx
@@ -131,15 +131,16 @@ private:
rtl::OUString const & name, sal_Int32 separator);
css::uno::Any getNamed(
- rtl::OUString const & name, rtl::Reference< unoidl::Entity > entity);
+ rtl::OUString const & name,
+ rtl::Reference< unoidl::Entity > const & entity);
css::uno::Any getEnumMember(
- rtl::Reference< unoidl::EnumTypeEntity > entity,
+ rtl::Reference< unoidl::EnumTypeEntity > const & entity,
rtl::OUString const & member);
css::uno::Any getConstant(
rtl::OUString const & constantGroupName,
- rtl::Reference< unoidl::ConstantGroupEntity > entity,
+ rtl::Reference< unoidl::ConstantGroupEntity > const & entity,
rtl::OUString const & member);
rtl::Reference< unoidl::Entity > findEntity(rtl::OUString const & name);