diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-06 16:12:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-06 16:12:40 +0100 |
commit | 0ece50a4ce35d87b7402b201b2d099c37fdfc13e (patch) | |
tree | d2ba2521f3c9566a656ccc928f018ab026b0eda0 /sdext | |
parent | f0d6137c4e61bea3bed2b201a83a8e7a66065114 (diff) |
fix build problem
Change-Id: Ia6a54d86d4f283c7220a88b6bc68f0fb47ed3014
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/pdfimport/inc/pdfihelper.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sdext/source/pdfimport/inc/pdfihelper.hxx b/sdext/source/pdfimport/inc/pdfihelper.hxx index de589a6cefc7..259e3bdf3865 100644 --- a/sdext/source/pdfimport/inc/pdfihelper.hxx +++ b/sdext/source/pdfimport/inc/pdfihelper.hxx @@ -151,11 +151,11 @@ namespace pdfi { default: case ::com::sun::star::rendering::PathJoinType::MITER: - return "miter"; + return OUString("miter"); case ::com::sun::star::rendering::PathJoinType::ROUND: - return "round"; + return OUString("round"); case ::com::sun::star::rendering::PathJoinType::BEVEL: - return "bevel"; + return OUString("bevel"); } } @@ -165,11 +165,11 @@ namespace pdfi { default: case ::com::sun::star::rendering::PathCapType::BUTT: - return "butt"; + return OUString("butt"); case ::com::sun::star::rendering::PathCapType::ROUND: - return "round"; + return OUString("round"); case ::com::sun::star::rendering::PathCapType::SQUARE: - return "square"; + return OUString("square"); } } |