diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-07 11:53:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-07 12:53:39 +0200 |
commit | 306f04830300c239fd74677bcc61efcb5a4532ea (patch) | |
tree | 99e45a78bdf3a7ed307ac87306737e976302b649 /tools | |
parent | f536699304e951ab2e104118ad36335ee0f1b268 (diff) |
fdo#84938: convert COMPRESSMODE_ #defines to 'enum class'
Change-Id: Ica501fc73e7e5f9dbd30dd9da3f337b2dc7e6f02
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index 4287fb7a88e0..19ebddf20a96 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -378,7 +378,7 @@ void SvStream::SetSize(sal_uInt64 const nSize) void SvStream::ImpInit() { m_nActPos = 0; - nCompressMode = COMPRESSMODE_NONE; + nCompressMode = SvStreamCompressFlags::NONE; eStreamCharSet = osl_getThreadTextEncoding(); nCryptMask = 0; bIsEof = false; |