diff options
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/std_inputstream.cxx | 2 | ||||
-rw-r--r-- | ucbhelper/source/provider/std_outputstream.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ucbhelper/source/provider/std_inputstream.cxx b/ucbhelper/source/provider/std_inputstream.cxx index 513b9db9f53b..506e953e9e48 100644 --- a/ucbhelper/source/provider/std_inputstream.cxx +++ b/ucbhelper/source/provider/std_inputstream.cxx @@ -18,7 +18,7 @@ using namespace com::sun::star; namespace ucbhelper { - StdInputStream::StdInputStream( boost::shared_ptr< istream > pStream ) : + StdInputStream::StdInputStream( boost::shared_ptr< istream > const & pStream ) : m_pStream( pStream ), m_nLength( 0 ) { diff --git a/ucbhelper/source/provider/std_outputstream.cxx b/ucbhelper/source/provider/std_outputstream.cxx index 390ddbe4b408..bfe5efa0ea39 100644 --- a/ucbhelper/source/provider/std_outputstream.cxx +++ b/ucbhelper/source/provider/std_outputstream.cxx @@ -18,7 +18,7 @@ using namespace com::sun::star; namespace ucbhelper { - StdOutputStream::StdOutputStream( boost::shared_ptr< ostream > pStream ) : + StdOutputStream::StdOutputStream( boost::shared_ptr< ostream > const & pStream ) : m_pStream( pStream ) { } |