summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-03 06:01:17 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-03 11:48:02 +0100
commit919e27746650f223699a97f8f3d4922101d6d739 (patch)
tree33909252ee42540d05ce94998354fd221c247a57 /comphelper
parent9657161c2a55cc9456e37f7220c5fdecae1829bb (diff)
loplugin: unused variables and commented code
Change-Id: I01f1f1d112767b576d7cfc6e25fe95385de2c0cf
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/accessiblewrapper.cxx7
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*/ )