sfx2/source/view/viewsh.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 7b0259573fb3c16e43fb47cf5f2548c81f162383 Author: Andras Timar <[email protected]> AuthorDate: Mon May 15 22:06:10 2023 +0200 Commit: Andras Timar <[email protected]> CommitDate: Mon May 15 22:06:10 2023 +0200 fix unused exception parameter 'e' Change-Id: Ibfee099e4e9b724648d7500b9ebb4e8ab84989b8 diff --git a/sfx2/source/view/viewsh.cxx b/sfx2/source/view/viewsh.cxx index 132497876eb7..b19da3d1ee23 100644 --- a/sfx2/source/view/viewsh.cxx +++ b/sfx2/source/view/viewsh.cxx @@ -723,7 +723,7 @@ void LOKDocumentFocusListener::notifyEvent( const accessibility::AccessibleEvent break; } } - catch( const lang::IndexOutOfBoundsException& e ) + catch( const lang::IndexOutOfBoundsException& ) { SAL_WARN("lok.a11y", "Focused object has invalid index in parent"); }
