summaryrefslogtreecommitdiff
path: root/test/source/sheet/functiondescription.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/source/sheet/functiondescription.cxx')
-rw-r--r--test/source/sheet/functiondescription.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/sheet/functiondescription.cxx b/test/source/sheet/functiondescription.cxx
index e629331175ae..5b7aeb5ca99a 100644
--- a/test/source/sheet/functiondescription.cxx
+++ b/test/source/sheet/functiondescription.cxx
@@ -24,13 +24,13 @@ namespace apitest
{
void FunctionDescription::testFunctionDescriptionProperties()
{
- uno::Sequence<beans::PropertyValue> aFunctionDescription(init());
+ const uno::Sequence<beans::PropertyValue> aFunctionDescription(init());
std::vector<OUString> names;
// Only test the get/read operation of the values, because set/write operation doesn't
// make any sense. It doesn't trigger any changes.
// See discussion: nabble.documentfoundation.org/Testing-UNO-API-service-properties-td4236286.html.
- for (auto& value : aFunctionDescription)
+ for (const auto& value : aFunctionDescription)
{
if (value.Name == "Id")
{