summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/source/fwe/helper/undomanagerhelper.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/framework/source/fwe/helper/undomanagerhelper.cxx b/framework/source/fwe/helper/undomanagerhelper.cxx
index 8b0c9c58593d..c9b68c7f6761 100644
--- a/framework/source/fwe/helper/undomanagerhelper.cxx
+++ b/framework/source/fwe/helper/undomanagerhelper.cxx
@@ -246,7 +246,6 @@ namespace framework
virtual void resetAll() SAL_OVERRIDE;
virtual void listActionEntered( const OUString& i_comment ) SAL_OVERRIDE;
virtual void listActionLeft( const OUString& i_comment ) SAL_OVERRIDE;
- virtual void listActionLeftAndMerged() SAL_OVERRIDE;
virtual void listActionCancelled() SAL_OVERRIDE;
virtual void undoManagerDying() SAL_OVERRIDE;
@@ -840,20 +839,6 @@ namespace framework
notify( i_comment, &XUndoManagerListener::leftContext );
}
- void UndoManagerHelper_Impl::listActionLeftAndMerged()
- {
-#if OSL_DEBUG_LEVEL > 0
- const bool bCurrentContextIsAPIContext = m_aContextAPIFlags.top();
- m_aContextAPIFlags.pop();
- OSL_ENSURE( bCurrentContextIsAPIContext == m_bAPIActionRunning, "UndoManagerHelper_Impl::listActionLeftAndMerged: API and non-API contexts interwoven!" );
-#endif
-
- if ( m_bAPIActionRunning )
- return;
-
- notify( &XUndoManagerListener::leftHiddenContext );
- }
-
void UndoManagerHelper_Impl::listActionCancelled()
{
#if OSL_DEBUG_LEVEL > 0