summaryrefslogtreecommitdiffstats
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-07 11:53:42 +0200
committerNoel Grandin <noel@peralex.com>2015-01-07 12:53:39 +0200
commit306f04830300c239fd74677bcc61efcb5a4532ea (patch)
tree99e45a78bdf3a7ed307ac87306737e976302b649 /editeng
parentWW8 filter: zoom type testcase (diff)
downloadcore-306f04830300c239fd74677bcc61efcb5a4532ea.tar.gz
core-306f04830300c239fd74677bcc61efcb5a4532ea.zip
fdo#84938: convert COMPRESSMODE_ #defines to 'enum class'
Change-Id: Ica501fc73e7e5f9dbd30dd9da3f337b2dc7e6f02
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/bulitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/bulitem.cxx b/editeng/source/items/bulitem.cxx
index a0dd0eca3956..0936d982345e 100644
--- a/editeng/source/items/bulitem.cxx
+++ b/editeng/source/items/bulitem.cxx
@@ -328,7 +328,7 @@ SvStream& SvxBulletItem::Store( SvStream& rStrm, sal_uInt16 /*nItemVersion*/ ) c
sal_Size _nStart = rStrm.Tell();
// Small preliminary estimate of the size ...
- sal_uInt16 nFac = ( rStrm.GetCompressMode() != COMPRESSMODE_NONE ) ? 3 : 1;
+ sal_uInt16 nFac = ( rStrm.GetCompressMode() != SvStreamCompressFlags::NONE ) ? 3 : 1;
const Bitmap aBmp( pGraphicObject->GetGraphic().GetBitmap() );
sal_uLong nBytes = aBmp.GetSizeBytes();
if ( nBytes < sal_uLong(0xFF00*nFac) )