summaryrefslogtreecommitdiff
path: root/fpicker/source/office/OfficeFilePicker.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-18 15:37:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-21 18:12:52 +0200
commitf0f9d986e38c83ffc9fbc16cef461398231756aa (patch)
treea578a12992f46480d89a78abcde9ccdbc580a5b3 /fpicker/source/office/OfficeFilePicker.cxx
parentb54889fb57ecdc2d8fe1badcb325c1ed70e9e7ec (diff)
loplugin:virtualdead unused param in SvtFileDialog_Base
Change-Id: Id10c6df2a9d00f19dc1dc314515fedbe90918f66 Reviewed-on: https://gerrit.libreoffice.org/81235 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'fpicker/source/office/OfficeFilePicker.cxx')
-rw-r--r--fpicker/source/office/OfficeFilePicker.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/office/OfficeFilePicker.cxx b/fpicker/source/office/OfficeFilePicker.cxx
index 0d453066ed6b..aa95fcc8baf2 100644
--- a/fpicker/source/office/OfficeFilePicker.cxx
+++ b/fpicker/source/office/OfficeFilePicker.cxx
@@ -840,13 +840,13 @@ sal_Int32 SAL_CALL SvtFilePicker::getAvailableHeight()
}
-void SAL_CALL SvtFilePicker::setImage( sal_Int16 aImageFormat, const Any& rImage )
+void SAL_CALL SvtFilePicker::setImage( sal_Int16 /*aImageFormat*/, const Any& rImage )
{
checkAlive();
SolarMutexGuard aGuard;
if ( getDialog() )
- getDialog()->setImage( aImageFormat, rImage );
+ getDialog()->setImage( rImage );
}