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"); } }