diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-03 06:01:17 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-03 11:48:02 +0100 |
commit | 919e27746650f223699a97f8f3d4922101d6d739 (patch) | |
tree | 33909252ee42540d05ce94998354fd221c247a57 /comphelper | |
parent | 9657161c2a55cc9456e37f7220c5fdecae1829bb (diff) |
loplugin: unused variables and commented code
Change-Id: I01f1f1d112767b576d7cfc6e25fe95385de2c0cf
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/accessiblewrapper.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/comphelper/source/misc/accessiblewrapper.cxx b/comphelper/source/misc/accessiblewrapper.cxx index f7ac7389b917..897f0fd771c3 100644 --- a/comphelper/source/misc/accessiblewrapper.cxx +++ b/comphelper/source/misc/accessiblewrapper.cxx @@ -277,9 +277,10 @@ namespace comphelper xContext = xOwningAccessible->getAccessibleContext(); if ( xContext.is() ) { - ::rtl::OUString sName = xContext->getAccessibleName(); - ::rtl::OUString sDescription = xContext->getAccessibleDescription(); -// sal_Int32 nPlaceYourBreakpointHere = 0; + //TODO: do something + //::rtl::OUString sName = xContext->getAccessibleName(); + //::rtl::OUString sDescription = xContext->getAccessibleDescription(); + //sal_Int32 nPlaceYourBreakpointHere = 0; } } catch( const Exception& /*e*/ ) |