diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-26 15:12:45 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-26 15:26:17 +0300 |
commit | 19ced247c6ad3351e8808c783e99fd19d9e5a473 (patch) | |
tree | 944f23cb51ea514602a7258a79630786790ae2b3 /sd/source | |
parent | cfb050dfb18e2b8ede912b70a55778beb42458b3 (diff) |
WaE: unreferenced local variable
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/viewshel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx index bb1357808aa4..9ca0789de391 100644 --- a/sd/source/ui/view/viewshel.cxx +++ b/sd/source/ui/view/viewshel.cxx @@ -1151,7 +1151,7 @@ void ViewShell::ImpSidUndo(sal_Bool, SfxRequest& rReq) pUndoManager->Undo(); } } - catch( const Exception& e ) + catch( const Exception& ) { // no need to handle. By definition, the UndoManager handled this by clearing the // Undo/Redo stacks @@ -1200,7 +1200,7 @@ void ViewShell::ImpSidRedo(sal_Bool, SfxRequest& rReq) pUndoManager->Redo(); } } - catch( const Exception& e ) + catch( const Exception& ) { // no need to handle. By definition, the UndoManager handled this by clearing the // Undo/Redo stacks |