summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-07-30 17:49:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-07-31 12:55:10 +0200
commitec7a52125cd0674b58f58d0678e23885d67e1484 (patch)
tree4393f3379be97628401565ae341c48677c6bea37 /sdext/source/pdfimport/inc
parentf0531aee9535118addf73771c2b3d8a02f1894bf (diff)
Improved loplugin:stringconstant (now that GCC 7 supports it): sdext
Change-Id: I3124c3e91c2bbf918113544d5d01b55a3f6b6005 Reviewed-on: https://gerrit.libreoffice.org/76649 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sdext/source/pdfimport/inc')
-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 4a7fd569688e..6557ffad8612 100644
--- a/sdext/source/pdfimport/inc/pdfihelper.hxx
+++ b/sdext/source/pdfimport/inc/pdfihelper.hxx
@@ -154,11 +154,11 @@ namespace pdfi
{
default:
case css::rendering::PathJoinType::MITER:
- return OUString("miter");
+ return "miter";
case css::rendering::PathJoinType::ROUND:
- return OUString("round");
+ return "round";
case css::rendering::PathJoinType::BEVEL:
- return OUString("bevel");
+ return "bevel";
}
}
@@ -168,11 +168,11 @@ namespace pdfi
{
default:
case css::rendering::PathCapType::BUTT:
- return OUString("butt");
+ return "butt";
case css::rendering::PathCapType::ROUND:
- return OUString("round");
+ return "round";
case css::rendering::PathCapType::SQUARE:
- return OUString("square");
+ return "square";
}
}