diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-07 14:19:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-07 14:55:55 +0200 |
commit | b2fb84499e1f75735e8fd90bc2eece3fed9af5f6 (patch) | |
tree | 186f3a6947b4d5feffe1326f66021102fac88c83 /sd/source/ui/accessibility | |
parent | c89f73a6033b28484f5e10054b542fa69a9fe475 (diff) |
loplugin:write only fields
Change-Id: Ia0fb487c5590e096659b81f76c4dc543e184c59c
Diffstat (limited to 'sd/source/ui/accessibility')
-rw-r--r-- | sd/source/ui/accessibility/AccessiblePageShape.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/accessibility/AccessiblePageShape.cxx b/sd/source/ui/accessibility/AccessiblePageShape.cxx index bc838104c208..7b2c632c72ec 100644 --- a/sd/source/ui/accessibility/AccessiblePageShape.cxx +++ b/sd/source/ui/accessibility/AccessiblePageShape.cxx @@ -41,9 +41,8 @@ namespace accessibility { AccessiblePageShape::AccessiblePageShape ( const uno::Reference<drawing::XDrawPage>& rxPage, const uno::Reference<XAccessible>& rxParent, - const AccessibleShapeTreeInfo& rShapeTreeInfo, - long nIndex) - : AccessibleShape (AccessibleShapeInfo (nullptr, rxParent, nIndex), rShapeTreeInfo), + const AccessibleShapeTreeInfo& rShapeTreeInfo) + : AccessibleShape (AccessibleShapeInfo (nullptr, rxParent), rShapeTreeInfo), mxPage (rxPage) { // The main part of the initialization is done in the init method which |