summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/css1atr.cxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2018-11-06 14:37:23 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2018-11-08 12:15:51 +0100
commit9e0770ea7e0cf094add54ad64bc9ff825d24bbe1 (patch)
treee897291e44ecb11ca44ba5e5ebefe03ac536862f /sw/source/filter/html/css1atr.cxx
parent841ee6fb052fb35467d74b70f575a86c8c0fe3b7 (diff)
Convert FieldUnit to scoped enum
Change-Id: Id2df31daa596a18c79af5fc6ea162deb6e24d5af Reviewed-on: https://gerrit.libreoffice.org/62958 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sw/source/filter/html/css1atr.cxx')
-rw-r--r--sw/source/filter/html/css1atr.cxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/sw/source/filter/html/css1atr.cxx b/sw/source/filter/html/css1atr.cxx
index 17f62b2a9718..630f3d611221 100644
--- a/sw/source/filter/html/css1atr.cxx
+++ b/sw/source/filter/html/css1atr.cxx
@@ -370,10 +370,10 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
const sal_Char *pUnit;
switch( eUnit )
{
- case FUNIT_100TH_MM:
- OSL_ENSURE( FUNIT_MM == eUnit, "Measuring unit not supported" );
+ case FieldUnit::MM_100TH:
+ OSL_ENSURE( FieldUnit::MM == eUnit, "Measuring unit not supported" );
SAL_FALLTHROUGH;
- case FUNIT_MM:
+ case FieldUnit::MM:
// 0.01mm = 0.57twip
nMul = 25400; // 25.4 * 1000
nDiv = 1440; // 72 * 20;
@@ -381,11 +381,11 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
pUnit = sCSS1_UNIT_mm;
break;
- case FUNIT_M:
- case FUNIT_KM:
- OSL_ENSURE( FUNIT_CM == eUnit, "Measuring unit not supported" );
+ case FieldUnit::M:
+ case FieldUnit::KM:
+ OSL_ENSURE( FieldUnit::CM == eUnit, "Measuring unit not supported" );
SAL_FALLTHROUGH;
- case FUNIT_CM:
+ case FieldUnit::CM:
// 0.01cm = 5.7twip (not exact, but the UI is also not exact)
nMul = 2540; // 2.54 * 1000
nDiv = 1440; // 72 * 20;
@@ -393,10 +393,10 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
pUnit = sCSS1_UNIT_cm;
break;
- case FUNIT_TWIP:
- OSL_ENSURE( FUNIT_POINT == eUnit, "Measuring unit not supported" );
+ case FieldUnit::TWIP:
+ OSL_ENSURE( FieldUnit::POINT == eUnit, "Measuring unit not supported" );
SAL_FALLTHROUGH;
- case FUNIT_POINT:
+ case FieldUnit::POINT:
// 0.1pt = 2.0twip (not exact, but the UI is also not exact)
nMul = 100;
nDiv = 20;
@@ -404,7 +404,7 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
pUnit = sCSS1_UNIT_pt;
break;
- case FUNIT_PICA:
+ case FieldUnit::PICA:
// 0.01pc = 2.40twip (not exact, but the UI is also not exact)
nMul = 1000;
nDiv = 240; // 12 * 20;
@@ -412,14 +412,14 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
pUnit = sCSS1_UNIT_pc;
break;
- case FUNIT_NONE:
- case FUNIT_FOOT:
- case FUNIT_MILE:
- case FUNIT_CUSTOM:
- case FUNIT_PERCENT:
- case FUNIT_INCH:
+ case FieldUnit::NONE:
+ case FieldUnit::FOOT:
+ case FieldUnit::MILE:
+ case FieldUnit::CUSTOM:
+ case FieldUnit::PERCENT:
+ case FieldUnit::INCH:
default:
- OSL_ENSURE( FUNIT_INCH == eUnit, "Measuring unit not supported" );
+ OSL_ENSURE( FieldUnit::INCH == eUnit, "Measuring unit not supported" );
// 0.01in = 14.4twip (not exact, but the UI is also not exact)
nMul = 1000;
nDiv = 1440; // 72 * 20;