diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-22 11:53:23 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-22 12:50:50 +0200 |
commit | 0292b4269ec370818bb1ed48222fade636374a4a (patch) | |
tree | c55f8d731f2867c19e42825b717b7a5b1921182c | |
parent | ea6eae7aa1fe7db06bc65af9bc8ea498ecf40fed (diff) |
cppcheck: Exception should be caught by reference
Change-Id: I14b26941a8f3115a5b3893593151c24684b24d60
-rw-r--r-- | winaccessibility/source/service/msaaservice_impl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winaccessibility/source/service/msaaservice_impl.cxx b/winaccessibility/source/service/msaaservice_impl.cxx index 0e10e8799ed2..408771d0895b 100644 --- a/winaccessibility/source/service/msaaservice_impl.cxx +++ b/winaccessibility/source/service/msaaservice_impl.cxx @@ -187,7 +187,7 @@ static void AccessBridgeHandleExistingWindow(const Reference< XMSAAService > &xA } } } - catch (::com::sun::star::uno::RuntimeException e) + catch (::com::sun::star::uno::RuntimeException) { // Ignore show events that throw DisposedExceptions in getAccessibleContext(), // but keep revoking these windows in hide(s). |