summaryrefslogtreecommitdiff
path: root/vcl/source/filter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-17 10:20:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-17 10:20:49 +0100
commitb8b5baefa9ead7a3360e0249224fd9beaa9b2bb0 (patch)
treedbd80e36f68a16acba56a151a9f57f9b931e07df /vcl/source/filter
parent18bc47d6e0eedd4b2e4dc977ae445d60b41eb122 (diff)
loplugin:casttovoid (--disable-pdfium)
Change-Id: I38017e3b191ef210facf46323c9a3bb5f54bf0a3
Diffstat (limited to 'vcl/source/filter')
-rw-r--r--vcl/source/filter/ipdf/pdfread.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/vcl/source/filter/ipdf/pdfread.cxx b/vcl/source/filter/ipdf/pdfread.cxx
index 5c3413227fd7..b1e85f6816de 100644
--- a/vcl/source/filter/ipdf/pdfread.cxx
+++ b/vcl/source/filter/ipdf/pdfread.cxx
@@ -180,14 +180,9 @@ bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream,
return rOutStream.good();
}
#else
-bool generatePreview(SvStream& rStream, Bitmap& rBitmap,
- sal_uInt64 nPos, sal_uInt64 nSize)
+bool generatePreview(SvStream&, Bitmap&,
+ sal_uInt64, sal_uInt64)
{
- (void)rStream;
- (void)rBitmap;
- (void)nPos;
- (void)nSize;
-
return true;
}