summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabvwshb.cxx
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-10-27 13:20:24 +0200
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-10-27 13:20:24 +0200
commit3d6f1fbb02ba073437cff962bd63ae35e18c0511 (patch)
treef6eac4041de6a48b71926ed350619d3c431601ef /sc/source/ui/view/tabvwshb.cxx
parent736a03a2c01b28c3f5c88f691e193d52783de282 (diff)
undoapi: no need to assert (via DBG_UNHANDLED_EXCEPTION) exceptions caught while calling IUndoManager::Undo/Redo: by defnition, the manager handled this by clearing the stacks
Diffstat (limited to 'sc/source/ui/view/tabvwshb.cxx')
-rw-r--r--sc/source/ui/view/tabvwshb.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/view/tabvwshb.cxx b/sc/source/ui/view/tabvwshb.cxx
index 1ad0680738e5..4b10a616c37c 100644
--- a/sc/source/ui/view/tabvwshb.cxx
+++ b/sc/source/ui/view/tabvwshb.cxx
@@ -539,7 +539,8 @@ void ScTabViewShell::ExecuteUndo(SfxRequest& rReq)
}
catch ( const uno::Exception& )
{
- DBG_UNHANDLED_EXCEPTION();
+ // no need to handle. By definition, the UndoManager handled this by clearing the
+ // Undo/Redo stacks
}
if ( bLockPaint )