summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-06-29 16:58:13 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-06-29 23:40:06 +0200
commit48cb5c72219b6c1c44974459876af988c0991f18 (patch)
treee0b8a2a20fadeadcf2ecefce2e60c64add7a57f8 /svl
parent4da29bcc4fd5fb764413055bf240963811e2d01e (diff)
Improved loplugin:redundantcast (const-qualified typedefs): svl
Change-Id: Ife1db81f772ecf3bb713952be276ff8a2fd318a9 Reviewed-on: https://gerrit.libreoffice.org/56716 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svl')
-rw-r--r--svl/qa/unit/test_URIHelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/qa/unit/test_URIHelper.cxx b/svl/qa/unit/test_URIHelper.cxx
index 7519ae8f5e0e..233b812a54c7 100644
--- a/svl/qa/unit/test_URIHelper.cxx
+++ b/svl/qa/unit/test_URIHelper.cxx
@@ -397,9 +397,9 @@ void Test::testFindFirstURLInText() {
buf.append("\" -> ");
buf.append(tests[i].result == nullptr ? "none" : tests[i].result);
buf.append(" (");
- buf.append(static_cast< sal_Int32 >(tests[i].begin));
+ buf.append(tests[i].begin);
buf.append(", ");
- buf.append(static_cast< sal_Int32 >(tests[i].end));
+ buf.append(tests[i].end);
buf.append(')');
buf.append(" != ");
buf.append(OUStringToOString(result, RTL_TEXTENCODING_UTF8));