summaryrefslogtreecommitdiff
path: root/package/source
diff options
context:
space:
mode:
Diffstat (limited to 'package/source')
-rw-r--r--package/source/xstor/owriteablestream.cxx6
-rw-r--r--package/source/xstor/owriteablestream.hxx6
-rw-r--r--package/source/zippackage/ZipPackageStream.cxx2
3 files changed, 7 insertions, 7 deletions
diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx
index 97342933d60f..7e600238c3bd 100644
--- a/package/source/xstor/owriteablestream.cxx
+++ b/package/source/xstor/owriteablestream.cxx
@@ -511,7 +511,7 @@ void OWriteStream_Impl::DisposeWrappers()
}
}
-OUString OWriteStream_Impl::GetFilledTempFileIfNo( const uno::Reference< io::XInputStream >& xStream )
+OUString const & OWriteStream_Impl::GetFilledTempFileIfNo( const uno::Reference< io::XInputStream >& xStream )
{
if ( !m_aTempURL.getLength() )
{
@@ -560,7 +560,7 @@ OUString OWriteStream_Impl::GetFilledTempFileIfNo( const uno::Reference< io::XIn
return m_aTempURL;
}
-OUString OWriteStream_Impl::FillTempGetFileName()
+OUString const & OWriteStream_Impl::FillTempGetFileName()
{
// should try to create cache first, if the amount of contents is too big, the temp file should be taken
if ( !m_xCacheStream.is() && m_aTempURL.isEmpty() )
@@ -955,7 +955,7 @@ void OWriteStream_Impl::Revert()
}
}
-uno::Sequence< beans::PropertyValue > OWriteStream_Impl::GetStreamProperties()
+uno::Sequence< beans::PropertyValue > const & OWriteStream_Impl::GetStreamProperties()
{
if ( !m_aProps.getLength() )
m_aProps = ReadPackageStreamProperties();
diff --git a/package/source/xstor/owriteablestream.hxx b/package/source/xstor/owriteablestream.hxx
index a1dcaf3f5587..63c7fccee258 100644
--- a/package/source/xstor/owriteablestream.hxx
+++ b/package/source/xstor/owriteablestream.hxx
@@ -124,8 +124,8 @@ struct OWriteStream_Impl : public MutexHolder
sal_Int32 m_nRelId;
private:
- OUString GetFilledTempFileIfNo( const css::uno::Reference< css::io::XInputStream >& xStream );
- OUString FillTempGetFileName();
+ OUString const & GetFilledTempFileIfNo( const css::uno::Reference< css::io::XInputStream >& xStream );
+ OUString const & FillTempGetFileName();
css::uno::Reference< css::io::XStream > GetTempFileAsStream();
css::uno::Reference< css::io::XInputStream > GetTempFileAsInputStream();
@@ -187,7 +187,7 @@ public:
void Commit();
void Revert();
- css::uno::Sequence< css::beans::PropertyValue > GetStreamProperties();
+ css::uno::Sequence< css::beans::PropertyValue > const & GetStreamProperties();
css::uno::Sequence< css::uno::Sequence< css::beans::StringPair > > GetAllRelationshipsIfAny();
diff --git a/package/source/zippackage/ZipPackageStream.cxx b/package/source/zippackage/ZipPackageStream.cxx
index e72c3999c9f5..a07fa0f956e0 100644
--- a/package/source/zippackage/ZipPackageStream.cxx
+++ b/package/source/zippackage/ZipPackageStream.cxx
@@ -149,7 +149,7 @@ void ZipPackageStream::CloseOwnStreamIfAny()
}
}
-uno::Reference< io::XInputStream > ZipPackageStream::GetOwnSeekStream()
+uno::Reference< io::XInputStream > const & ZipPackageStream::GetOwnSeekStream()
{
if ( !m_bHasSeekable && m_xStream.is() )
{