summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-03 10:55:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-03 11:05:13 +0000
commit0fe6f1a196b70f0ba4c948389b2ef9b1e77187b8 (patch)
treea35bd01d1c9a015cbcca380bc5cb177abc83e3fe /vcl/source/app
parentd68927c7fd4346311dce58e6059186633996d68b (diff)
use actual UNO enums in vcl..xmlsecurity
Change-Id: Id862544f27ebcbe8363f93dc83192d0f0cddb5cc Reviewed-on: https://gerrit.libreoffice.org/36041 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/unohelp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/unohelp.cxx b/vcl/source/app/unohelp.cxx
index e47d69ba9594..413f470cac56 100644
--- a/vcl/source/app/unohelp.cxx
+++ b/vcl/source/app/unohelp.cxx
@@ -192,7 +192,7 @@ css::awt::FontSlant vcl::unohelper::ConvertFontSlant(FontItalic eItalic)
eRet = css::awt::FontSlant_DONTKNOW;
break;
case FontItalic_FORCE_EQUAL_SIZE:
- eRet = css::awt::FontSlant_MAKE_FIXED_SIZE;
+ eRet = css::awt::FontSlant::FontSlant_MAKE_FIXED_SIZE;
break;
}
return eRet;
@@ -223,7 +223,7 @@ FontItalic vcl::unohelper::ConvertFontSlant(css::awt::FontSlant eSlant)
//there is no vcl reverse normal
eRet = ITALIC_NORMAL;
break;
- case css::awt::FontSlant_MAKE_FIXED_SIZE:
+ case css::awt::FontSlant::FontSlant_MAKE_FIXED_SIZE:
eRet = FontItalic_FORCE_EQUAL_SIZE;
break;
}