summaryrefslogtreecommitdiff
path: root/vcl/osx/a11yselectionwrapper.mm
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-04 09:59:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-04 14:23:17 +0200
commit2debad5fbe059b504da14e65719e6d18c1dc4989 (patch)
tree6989e1e13dd806952f387a591ef77ee288f57569 /vcl/osx/a11yselectionwrapper.mm
parent316557d6f4fe8a15112b39f3c808dda38cce018c (diff)
enable -Wunused-exception-parameter on clang
which is useful because our MSVC build will warn about this by default Change-Id: Idcc0f08b69b6eda4dd2ab010a5fdb674787bebcf Reviewed-on: https://gerrit.libreoffice.org/80184 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/osx/a11yselectionwrapper.mm')
-rw-r--r--vcl/osx/a11yselectionwrapper.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/a11yselectionwrapper.mm b/vcl/osx/a11yselectionwrapper.mm
index cc5b280994bd..163fe27da32c 100644
--- a/vcl/osx/a11yselectionwrapper.mm
+++ b/vcl/osx/a11yselectionwrapper.mm
@@ -42,7 +42,7 @@ using namespace ::com::sun::star::uno;
return children;
- } catch ( Exception& e)
+ } catch ( Exception&)
{
}
}
@@ -79,7 +79,7 @@ using namespace ::com::sun::star::uno;
for ( unsigned i = 0 ; i < c ; ++i ) {
xAccessibleSelection -> selectAccessibleChild( [ [ value objectAtIndex: i ] accessibleContext ] -> getAccessibleIndexInParent() );
}
- } catch ( Exception& e) {
+ } catch ( Exception&) {
}
}