[Libreoffice-commits] core.git: sdext/source
Caolán McNamara
caolanm at redhat.com
Tue May 6 08:13:19 PDT 2014
sdext/source/pdfimport/inc/pdfihelper.hxx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
New commits:
commit 0ece50a4ce35d87b7402b201b2d099c37fdfc13e
Author: Caolán McNamara <caolanm at 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");
}
}
More information about the Libreoffice-commits
mailing list