summaryrefslogtreecommitdiffstats
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-07 09:28:42 +0200
committerNoel Grandin <noel@peralex.com>2015-01-07 11:20:44 +0200
commit7f8f277b94704a289fbbd1b836e4e5d66311580d (patch)
tree2400b7306a0a2a3ea63aee2e5bfc336b52102635 /unotools
parentremove unused FEATUREFLAG_ #defines (diff)
downloadcore-7f8f277b94704a289fbbd1b836e4e5d66311580d.tar.gz
core-7f8f277b94704a289fbbd1b836e4e5d66311580d.zip
fdo#84938: convert STREAM_ #defines to 'enum class'
Change-Id: Ibbf14c7e9a5c1883c1311d4c86f948f74f8e473e
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/ucbhelper/tempfile.cxx2
-rw-r--r--unotools/source/ucbhelper/ucblockbytes.cxx2
-rw-r--r--unotools/source/ucbhelper/ucbstreamhelper.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx
index 3ad492e24fba..70b4259d4bc4 100644
--- a/unotools/source/ucbhelper/tempfile.cxx
+++ b/unotools/source/ucbhelper/tempfile.cxx
@@ -379,7 +379,7 @@ SvStream* TempFile::GetStream( StreamMode eMode )
if ( !GetURL().isEmpty() )
pStream = UcbStreamHelper::CreateStream( aURL, eMode, true /* bFileExists */ );
else
- pStream = new SvMemoryStream( eMode );
+ pStream = new SvMemoryStream( NULL, 0, eMode );
}
return pStream;
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx
index b91d53f06175..fa6a7668ba21 100644
--- a/unotools/source/ucbhelper/ucblockbytes.cxx
+++ b/unotools/source/ucbhelper/ucblockbytes.cxx
@@ -1558,7 +1558,7 @@ UcbLockBytesRef UcbLockBytes::CreateLockBytes( const Reference < XContent >& xCo
UcbLockBytesRef xLockBytes = new UcbLockBytes( pHandler );
xLockBytes->SetSynchronMode( !pHandler );
Reference< XActiveDataControl > xSink;
- if ( eOpenMode & STREAM_WRITE )
+ if ( eOpenMode & StreamMode::WRITE )
xSink = (XActiveDataControl*) new UcbStreamer_Impl( xLockBytes );
else
xSink = (XActiveDataControl*) new UcbDataSink_Impl( xLockBytes );
diff --git a/unotools/source/ucbhelper/ucbstreamhelper.cxx b/unotools/source/ucbhelper/ucbstreamhelper.cxx
index aa8f12dcd58f..fc3d31c9ee7b 100644
--- a/unotools/source/ucbhelper/ucbstreamhelper.cxx
+++ b/unotools/source/ucbhelper/ucbstreamhelper.cxx
@@ -49,9 +49,9 @@ static SvStream* lcl_CreateStream( const OUString& rFileName, StreamMode eOpenMo
UniversalContentBroker::create(
comphelper::getProcessComponentContext() ) );
UcbLockBytesRef xLockBytes;
- if ( eOpenMode & STREAM_WRITE )
+ if ( eOpenMode & StreamMode::WRITE )
{
- bool bTruncate = ( eOpenMode & STREAM_TRUNC ) != 0;
+ bool bTruncate = bool( eOpenMode & StreamMode::TRUNC );
if ( bTruncate )
{
try