summaryrefslogtreecommitdiff
path: root/sw/qa/extras/fodfexport
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-11-19 13:25:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2023-11-19 17:29:47 +0100
commit7724e504be75fdf2a90b0ffc19dce3df76ed14a6 (patch)
treeb17fc046d3792b25cdf7b84ccfc02ccf4d6713a3 /sw/qa/extras/fodfexport
parent35972b1fbe3dd26c2e384d6e65ef77ef90d5d2a3 (diff)
Extended loplugin:ostr: sw
Change-Id: I210f61f6d90776b086b7058fb1a831d235699fb7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159670 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/qa/extras/fodfexport')
-rw-r--r--sw/qa/extras/fodfexport/fodfexport.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/qa/extras/fodfexport/fodfexport.cxx b/sw/qa/extras/fodfexport/fodfexport.cxx
index c666d7a31054..30bcc1fcf54a 100644
--- a/sw/qa/extras/fodfexport/fodfexport.cxx
+++ b/sw/qa/extras/fodfexport/fodfexport.cxx
@@ -28,9 +28,9 @@ DECLARE_FODFEXPORT_TEST(testTdf113696, "tdf113696.odt")
if (xmlDocUniquePtr pXmlDoc = parseExportedFile())
{
assertXPath(pXmlDoc, "/office:document/office:body/office:text/text:p/draw:frame/"
- "draw:image[@draw:mime-type='image/x-vclgraphic']");
+ "draw:image[@draw:mime-type='image/x-vclgraphic']"_ostr);
assertXPath(pXmlDoc, "/office:document/office:body/office:text/text:p/draw:frame/"
- "draw:image[@draw:mime-type='image/png']");
+ "draw:image[@draw:mime-type='image/png']"_ostr);
}
}
@@ -43,9 +43,9 @@ DECLARE_FODFEXPORT_TEST(testTdf113696WriterImage, "tdf113696-writerimage.odt")
if (xmlDocUniquePtr pXmlDoc = parseExportedFile())
{
assertXPath(pXmlDoc, "/office:document/office:body/office:text/text:p/draw:frame/"
- "draw:image[@draw:mime-type='image/x-vclgraphic']");
+ "draw:image[@draw:mime-type='image/x-vclgraphic']"_ostr);
assertXPath(pXmlDoc, "/office:document/office:body/office:text/text:p/draw:frame/"
- "draw:image[@draw:mime-type='image/png']");
+ "draw:image[@draw:mime-type='image/png']"_ostr);
}
}