summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-06 16:12:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-06 16:12:40 +0100
commit0ece50a4ce35d87b7402b201b2d099c37fdfc13e (patch)
treed2ba2521f3c9566a656ccc928f018ab026b0eda0 /sdext
parentf0d6137c4e61bea3bed2b201a83a8e7a66065114 (diff)
fix build problem
Change-Id: Ia6a54d86d4f283c7220a88b6bc68f0fb47ed3014
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/pdfimport/inc/pdfihelper.hxx12
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");
}
}