summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorjan Iversen <jani@libreoffice.org>2018-04-01 18:21:38 +0200
committerjan Iversen <jani@libreoffice.org>2018-04-01 18:22:41 +0200
commit6e7f6dd20aa58cb4c9ab66260a62d71a53002b9b (patch)
treebe5c937d7d641c32cddb7cb0bc6c1eb59080712b /vcl
parente63a65174800968cfe5adb38e8f9ca28f22984d0 (diff)
iOS, void unused paramters.
Change-Id: I60b7d1a49d9e9073470ee8d0d6e68b34cdd0bdad
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/ipdf/pdfread.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/source/filter/ipdf/pdfread.cxx b/vcl/source/filter/ipdf/pdfread.cxx
index 572a4c2f6831..7f31e0ac15de 100644
--- a/vcl/source/filter/ipdf/pdfread.cxx
+++ b/vcl/source/filter/ipdf/pdfread.cxx
@@ -195,6 +195,10 @@ bool getCompatibleStream(SvStream& rInStream, SvStream& rOutStream, sal_uInt64 n
size_t generatePreview(SvStream&, std::vector<Bitmap>&, sal_uInt64 nPos, sal_uInt64 nSize,
size_t nFirstPage = 0, int nLastPage = 0)
{
+ (void)nPos;
+ (void)nSize;
+ (void)nFirstPage;
+ (void)nLastPage;
return false;
}