summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/cellbindinghandler.cxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2021-10-29 09:37:07 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2021-10-30 08:02:23 +0200
commit9265b53978e1ed5a61db9941b5661b88d0efd31b (patch)
tree1915de28c381bddc457e23b984be4dbc8bd2bf9e /extensions/source/propctrlr/cellbindinghandler.cxx
parent04a2e941cf976894bb69e4d2e1d946a5e513225b (diff)
Prepare for removal of non-const operator[] from Sequence in extensions
Change-Id: Id57b187aaa669d4b9a35ab726a6df1a9b4823f1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124364 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'extensions/source/propctrlr/cellbindinghandler.cxx')
-rw-r--r--extensions/source/propctrlr/cellbindinghandler.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/cellbindinghandler.cxx b/extensions/source/propctrlr/cellbindinghandler.cxx
index d73d8cfeeb8a..32517a6c4be9 100644
--- a/extensions/source/propctrlr/cellbindinghandler.cxx
+++ b/extensions/source/propctrlr/cellbindinghandler.cxx
@@ -81,10 +81,9 @@ namespace pcr
Sequence< OUString > SAL_CALL CellBindingPropertyHandler::getActuatingProperties( )
{
- Sequence< OUString > aInterestingProperties( 3 );
- aInterestingProperties[0] = PROPERTY_LIST_CELL_RANGE;
- aInterestingProperties[1] = PROPERTY_BOUND_CELL;
- aInterestingProperties[2] = PROPERTY_CONTROLSOURCE;
+ Sequence< OUString > aInterestingProperties{ PROPERTY_LIST_CELL_RANGE,
+ PROPERTY_BOUND_CELL,
+ PROPERTY_CONTROLSOURCE };
return aInterestingProperties;
}