diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-28 16:49:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-28 16:49:11 +0200 |
commit | 7f7e0a668204678b06d711487137a9f8b13c91e1 (patch) | |
tree | bb1d19d5d124027c5c8f413ce93e2d38afe1e901 /accessibility/source/helper | |
parent | 96fb2453e40f97a0bffcfe7e046b4599beace152 (diff) |
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I2a181d1442ef3b41ecba009d160d2d18d6fb71ac
Diffstat (limited to 'accessibility/source/helper')
-rw-r--r-- | accessibility/source/helper/acc_factory.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/accessibility/source/helper/acc_factory.cxx b/accessibility/source/helper/acc_factory.cxx index 92ce2cc43d19..5125ba45e7e1 100644 --- a/accessibility/source/helper/acc_factory.cxx +++ b/accessibility/source/helper/acc_factory.cxx @@ -210,7 +210,6 @@ inline bool hasFloatingChild(Window *pWindow) sal_Int32 _nRowPos, sal_uInt16 _nColPos, const TriState& _eState, - sal_Bool _bEnabled, sal_Bool _bIsTriState ) const; @@ -501,10 +500,10 @@ inline bool hasFloatingChild(Window *pWindow) Reference< XAccessible > AccessibleFactory::createAccessibleCheckBoxCell( const Reference< XAccessible >& _rxParent, IAccessibleTableProvider& _rBrowseBox, const Reference< XWindow >& _xFocusWindow, sal_Int32 _nRowPos, sal_uInt16 _nColPos, - const TriState& _eState, sal_Bool _bEnabled, sal_Bool _bIsTriState ) const + const TriState& _eState, sal_Bool _bIsTriState ) const { return new AccessibleCheckBoxCell( _rxParent, _rBrowseBox, _xFocusWindow, - _nRowPos, _nColPos, _eState, _bEnabled, _bIsTriState ); + _nRowPos, _nColPos, _eState, _bIsTriState ); } //-------------------------------------------------------------------- |