summaryrefslogtreecommitdiffstats
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-05 08:47:31 +0200
committerNoel Grandin <noel@peralex.com>2015-01-05 12:57:18 +0200
commit8130714148d58dd2bf1ef12dcc6dd6d5838be0d1 (patch)
treebf8cf91d9837b9d03e1e3e336be7eb35667d4de9 /svx
parentspelling: attachement -> attachment (diff)
downloadcore-8130714148d58dd2bf1ef12dcc6dd6d5838be0d1.tar.gz
core-8130714148d58dd2bf1ef12dcc6dd6d5838be0d1.zip
fdo#84938: replace NUMBERFORMAT_INT_ constants with 'enum class'
Change-Id: I9c67de31f5571b282adc132d973b79bccb35fdc9
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdmodel.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index 5c2db6fb35fd..84efe695a76e 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -155,7 +155,7 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe
bNoBitmapCaching=false;
bReadOnly=false;
nStreamCompressMode=COMPRESSMODE_NONE;
- nStreamNumberFormat=NUMBERFORMAT_INT_BIGENDIAN;
+ nStreamNumberFormat=SvStreamEndian::BIG;
nDefaultTabulator=0;
mpNumberFormatter = NULL;
bTransparentTextFrames=false;
@@ -177,7 +177,7 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, ::comphelper::IEmbeddedHelper* _pEmbe
get();
#ifdef OSL_LITENDIAN
- nStreamNumberFormat=NUMBERFORMAT_INT_LITTLEENDIAN;
+ nStreamNumberFormat=SvStreamEndian::LITTLE;
#endif
bExtColorTable=bUseExtColorTable;