INTEGRATION: CWS dba30d (1.28.8); FILE MERGED
2008/06/10 06:41:23 fs 1.28.8.2: RESYNC: (1.28-1.29); FILE MERGED 2008/06/01 21:00:26 fs 1.28.8.1: #i80943# Execute: default-call the base class, it has a default handling for 'user-defined' features now
This commit is contained in:
parent
5d24267dd4
commit
61ad099ad0
1 changed files with 5 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
*
|
||||
* $RCSfile: singledoccontroller.cxx,v $
|
||||
* $Revision: 1.29 $
|
||||
* $Revision: 1.30 $
|
||||
*
|
||||
* This file is part of OpenOffice.org.
|
||||
*
|
||||
|
@ -517,7 +517,7 @@ namespace dbaui
|
|||
return aReturn;
|
||||
}
|
||||
// -----------------------------------------------------------------------------
|
||||
void OSingleDocumentController::Execute(sal_uInt16 _nId, const Sequence< PropertyValue >& /*aArgs*/)
|
||||
void OSingleDocumentController::Execute(sal_uInt16 _nId, const Sequence< PropertyValue >& _rArgs)
|
||||
{
|
||||
switch(_nId)
|
||||
{
|
||||
|
@ -532,6 +532,9 @@ namespace dbaui
|
|||
m_aUndoManager.Redo();
|
||||
InvalidateFeature(ID_BROWSER_UNDO);
|
||||
break;
|
||||
default:
|
||||
OSingleDocumentController_Base::Execute( _nId, _rArgs );
|
||||
break;
|
||||
}
|
||||
InvalidateFeature(_nId);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue