diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-18 10:26:46 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-18 13:47:29 +0200 |
commit | 3c695c5ba0741cd3b1d748f27a4f119d4fa7366c (patch) | |
tree | 8d1e333ca6bb0ac3828139e5f679497400c79b62 | |
parent | e6e619b380880cb0ccba993cedcfb294d7d4527e (diff) |
msDescription in SvtRulerAccessible is unused
ever since
commit 2b12a5b87b1de9ae95d9562ba21201890b1100c5
Date: Mon Feb 10 09:29:34 2014 +0000
the return of callcatcher
Change-Id: I62021793e5ca90cba9d2e6998f5ac30da33764f7
-rw-r--r-- | include/svtools/accessibleruler.hxx | 5 | ||||
-rw-r--r-- | svtools/source/control/accessibleruler.cxx | 3 |
2 files changed, 1 insertions, 7 deletions
diff --git a/include/svtools/accessibleruler.hxx b/include/svtools/accessibleruler.hxx index e8ad0d7f4b42..709a133cb61b 100644 --- a/include/svtools/accessibleruler.hxx +++ b/include/svtools/accessibleruler.hxx @@ -182,11 +182,6 @@ protected: void ThrowExceptionIfNotAlive(); private: - /** Description of this object. This is not a constant because it can - be set from the outside. - */ - ::rtl::OUString msDescription; - /** Name of this object. */ ::rtl::OUString msName; diff --git a/svtools/source/control/accessibleruler.cxx b/svtools/source/control/accessibleruler.cxx index d41128d48fdb..d6ac5437246f 100644 --- a/svtools/source/control/accessibleruler.cxx +++ b/svtools/source/control/accessibleruler.cxx @@ -181,8 +181,7 @@ sal_Int16 SAL_CALL SvtRulerAccessible::getAccessibleRole() OUString SAL_CALL SvtRulerAccessible::getAccessibleDescription() { - ::osl::MutexGuard aGuard( m_aMutex ); - return msDescription; + return OUString(); } OUString SAL_CALL SvtRulerAccessible::getAccessibleName() |