summaryrefslogtreecommitdiff
path: root/oox/source/helper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-03-31 11:08:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-31 11:49:46 +0000
commit657702108f3e06e7e90411838cd37f9e6a8b1471 (patch)
treefead6bb6e770c84a7397d7916e62efad5d78f9f1 /oox/source/helper
parent82025e7f7af562549a900b9f1d76ed73fe4f2a58 (diff)
use actual UNO enums in oox
Change-Id: I7fbb3619287acde0c397ff9b4015271ec785cc46 Reviewed-on: https://gerrit.libreoffice.org/35958 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/source/helper')
-rw-r--r--oox/source/helper/propertymap.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/oox/source/helper/propertymap.cxx b/oox/source/helper/propertymap.cxx
index 20e1fb761d29..b40aea5a27bb 100644
--- a/oox/source/helper/propertymap.cxx
+++ b/oox/source/helper/propertymap.cxx
@@ -413,7 +413,7 @@ static void lclDumpAnyValue( const Any& value)
case TextVerticalAdjust_BLOCK:
s = "block";
break;
- case TextVerticalAdjust_MAKE_FIXED_SIZE:
+ case TextVerticalAdjust::TextVerticalAdjust_MAKE_FIXED_SIZE:
s = "make_fixed_size";
break;
}
@@ -433,7 +433,7 @@ static void lclDumpAnyValue( const Any& value)
case TextHorizontalAdjust_BLOCK:
s = "block";
break;
- case TextHorizontalAdjust_MAKE_FIXED_SIZE:
+ case TextHorizontalAdjust::TextHorizontalAdjust_MAKE_FIXED_SIZE:
s = "make_fixed_size";
break;
}
@@ -839,7 +839,7 @@ static const char* lclDumpAnyValueCode( const Any& value, int level)
case TextVerticalAdjust_BLOCK:
s = "block";
break;
- case TextVerticalAdjust_MAKE_FIXED_SIZE:
+ case TextVerticalAdjust::TextVerticalAdjust_MAKE_FIXED_SIZE:
s = "make_fixed_size";
break;
}
@@ -860,7 +860,7 @@ static const char* lclDumpAnyValueCode( const Any& value, int level)
case TextHorizontalAdjust_BLOCK:
s = "block";
break;
- case TextHorizontalAdjust_MAKE_FIXED_SIZE:
+ case TextHorizontalAdjust::TextHorizontalAdjust_MAKE_FIXED_SIZE:
s = "make_fixed_size";
break;
}