sdext/source/pdfimport/inc/pdfihelper.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
New commits: commit 0ece50a4ce35d87b7402b201b2d099c37fdfc13e Author: Caolán McNamara <caol...@redhat.com> Date: Tue May 6 16:12:19 2014 +0100 fix build problem Change-Id: Ia6a54d86d4f283c7220a88b6bc68f0fb47ed3014 diff --git a/sdext/source/pdfimport/inc/pdfihelper.hxx b/sdext/source/pdfimport/inc/pdfihelper.hxx index de589a6..259e3bd 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"); } }
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits