diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-01 21:09:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-01 21:09:49 +0100 |
commit | 36b74a58d6e4483895f5ba4eb0334e2b44c27f16 (patch) | |
tree | 56a813152757e8df8170ad5ebd6e7dc34b4da755 /svx/source | |
parent | bf5bb7c5b9da1231d4435a00432e1893d6771a0f (diff) |
loplugin:unreffun
Change-Id: I25213abc84c3e512fa620aa7c08e0c2e1bc0159a
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/accessibility/AccessibleTextHelper.cxx | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/svx/source/accessibility/AccessibleTextHelper.cxx b/svx/source/accessibility/AccessibleTextHelper.cxx index 9b4f55696549..2331d84a3d8d 100644 --- a/svx/source/accessibility/AccessibleTextHelper.cxx +++ b/svx/source/accessibility/AccessibleTextHelper.cxx @@ -118,10 +118,6 @@ namespace accessibility { mxFrontEnd = rInterface; } - uno::Reference< XAccessible > GetEventSource() const - { - return mxFrontEnd; - } void SetOffset( const Point& ); Point GetOffset() const @@ -141,8 +137,6 @@ namespace accessibility void SetAdditionalChildStates( const VectorOfStates& rChildStates ); - bool IsSelected() const; - void Dispose(); // do NOT hold object mutex when calling this! Danger of deadlock @@ -350,20 +344,6 @@ namespace accessibility throw uno::RuntimeException("AccessibleTextHelper_Impl::GetEditSource: no edit source", mxFrontEnd ); } - bool AccessibleTextHelper_Impl::IsSelected() const - { - bool bRet = false; - - try - { - ESelection aSelection; - bRet = GetEditViewForwarder().GetSelection( aSelection ); - } - catch( const uno::Exception& ) {} - - return bRet; - } - // functor for sending child events (no stand-alone function, they are maybe not inlined) class AccessibleTextHelper_OffsetChildIndex : public ::std::unary_function< ::accessibility::AccessibleEditableTextPara&, void > { |