summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/ucbstorage.cxx2
-rw-r--r--sot/source/unoolestorage/xolesimplestorage.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx
index 0aa9fff0b3c9..1b3bd3381e8a 100644
--- a/sot/source/sdstor/ucbstorage.cxx
+++ b/sot/source/sdstor/ucbstorage.cxx
@@ -1941,7 +1941,7 @@ bool UCBStorage_Impl::Insert( ::ucbhelper::Content *pContent )
try
{
- Sequence< ContentInfo > aInfo = pContent->queryCreatableContentsInfo();
+ const Sequence< ContentInfo > aInfo = pContent->queryCreatableContentsInfo();
if ( !aInfo.hasElements() )
return false;
diff --git a/sot/source/unoolestorage/xolesimplestorage.cxx b/sot/source/unoolestorage/xolesimplestorage.cxx
index 82d7f8bbb7a5..5a7f561b0a22 100644
--- a/sot/source/unoolestorage/xolesimplestorage.cxx
+++ b/sot/source/unoolestorage/xolesimplestorage.cxx
@@ -236,7 +236,7 @@ void OLESimpleStorage::InsertNameAccessToStorage_Impl( BaseStorage* pStorage, co
try
{
- uno::Sequence< OUString > aElements = xNameAccess->getElementNames();
+ const uno::Sequence< OUString > aElements = xNameAccess->getElementNames();
for ( const auto& rElement : aElements )
{
uno::Reference< io::XInputStream > xInputStream;