diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-22 13:04:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-22 22:02:08 +0100 |
commit | c664f790e697278382d739cb2c81039abde4253e (patch) | |
tree | e44c2ad788d58452318c32b6d0724e14eae7024d | |
parent | d4b7c6fabb4973e71ac2ce6b456b03d3d54c759a (diff) |
loplugin:redundantcast (clang-cl)
Change-Id: If1a5289ce346fa94f7aa8080a50572d6f9cade53
Reviewed-on: https://gerrit.libreoffice.org/48314
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx index 2c8cb52bfc14..fc3ef412cb34 100644 --- a/vcl/source/gdi/pdfwriter_impl.cxx +++ b/vcl/source/gdi/pdfwriter_impl.cxx @@ -6040,7 +6040,7 @@ void PDFWriterImpl::sortWidgets() { SAL_WARN( "vcl.pdfwriter", "wrong number of sorted annotations" ); SAL_INFO("vcl.pdfwriter", "PDFWriterImpl::sortWidgets(): wrong number of sorted assertions " - "on page nr " << static_cast<long int>(item.first) << ", " << + "on page nr " << item.first << ", " << static_cast<long int>(item.second.aSortedAnnots.size()) << " sorted and " << static_cast<long int>(nAnnots) << " unsorted"); } |