diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-02 08:36:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-05 08:21:46 +0200 |
commit | 65ca57a447bae97714b1b32aa2df5705215a95ad (patch) | |
tree | 9b62f8fb4a890d5fcba13abc446b3244e9c5232f /test | |
parent | a881fd7e66294ada222e1d618a7d47a0549a2342 (diff) |
convert LineStyle to scoped enum
Change-Id: I30cfa5a0649b806604c443f55683d1f2a430983d
Diffstat (limited to 'test')
-rw-r--r-- | test/source/mtfxmldump.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/source/mtfxmldump.cxx b/test/source/mtfxmldump.cxx index f1e2dd059fc1..e89c1cd0983c 100644 --- a/test/source/mtfxmldump.cxx +++ b/test/source/mtfxmldump.cxx @@ -116,10 +116,10 @@ OUString convertLineStyleToString(LineStyle eAlign) { switch (eAlign) { - case LINE_NONE: return OUString("none"); - case LINE_SOLID: return OUString("solid"); - case LINE_DASH: return OUString("dash"); - case LineStyle_FORCE_EQUAL_SIZE: return OUString("equalsize"); + case LineStyle::NONE: return OUString("none"); + case LineStyle::Solid: return OUString("solid"); + case LineStyle::Dash: return OUString("dash"); + default: break; } return OUString(); } |