Kaydet (Commit) 9351353b authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid reserved identifiers

Change-Id: I18ebddef41955948fd4528ae74f4fe9c7439d53b
üst 8d1bc505
...@@ -91,7 +91,7 @@ friend class SfxViewFrame; ...@@ -91,7 +91,7 @@ friend class SfxViewFrame;
DECL_DLLPRIVATE_LINK_TYPED( PostMsgHandler, SfxRequest *, void ); DECL_DLLPRIVATE_LINK_TYPED( PostMsgHandler, SfxRequest *, void );
SAL_DLLPRIVATE void Call_Impl( SfxShell& rShell, const SfxSlot &rSlot, SfxRequest &rReq, bool bRecord ); SAL_DLLPRIVATE void Call_Impl( SfxShell& rShell, const SfxSlot &rSlot, SfxRequest &rReq, bool bRecord );
SAL_DLLPRIVATE void _Update_Impl( bool,bool,bool,SfxWorkWindow*); SAL_DLLPRIVATE void Update_Impl_( bool,bool,bool,SfxWorkWindow*);
protected: protected:
friend class SfxBindings; friend class SfxBindings;
...@@ -99,10 +99,10 @@ friend class SfxStateCache; ...@@ -99,10 +99,10 @@ friend class SfxStateCache;
friend class SfxPopupMenuManager; friend class SfxPopupMenuManager;
friend class SfxHelp; friend class SfxHelp;
bool _FindServer( sal_uInt16 nId, SfxSlotServer &rServer, bool bModal ); bool FindServer_( sal_uInt16 nId, SfxSlotServer &rServer, bool bModal );
bool _FillState( const SfxSlotServer &rServer, bool FillState_( const SfxSlotServer &rServer,
SfxItemSet &rState, const SfxSlot *pRealSlot ); SfxItemSet &rState, const SfxSlot *pRealSlot );
void _Execute( SfxShell &rShell, const SfxSlot &rSlot, void Execute_( SfxShell &rShell, const SfxSlot &rSlot,
SfxRequest &rReq, SfxRequest &rReq,
SfxCallMode eCall = SfxCallMode::RECORD); SfxCallMode eCall = SfxCallMode::RECORD);
......
...@@ -410,7 +410,7 @@ void SfxBindings::Update_Impl ...@@ -410,7 +410,7 @@ void SfxBindings::Update_Impl
if ( pSet ) if ( pSet )
{ {
// Query Status // Query Status
if ( rDispat._FillState( *pMsgServer, *pSet, pRealSlot ) ) if ( rDispat.FillState_( *pMsgServer, *pSet, pRealSlot ) )
{ {
// Post Status // Post Status
const SfxInterface *pInterface = const SfxInterface *pInterface =
...@@ -1169,7 +1169,7 @@ void SfxBindings::Execute_Impl( SfxRequest& aReq, const SfxSlot* pSlot, SfxShell ...@@ -1169,7 +1169,7 @@ void SfxBindings::Execute_Impl( SfxRequest& aReq, const SfxSlot* pSlot, SfxShell
const sal_uInt16 nSlotId = pRealSlot->GetSlotId(); const sal_uInt16 nSlotId = pRealSlot->GetSlotId();
aReq.SetSlot( nSlotId ); aReq.SetSlot( nSlotId );
aReq.AppendItem( SfxAllEnumItem( rPool.GetWhich(nSlotId), pSlot->GetValue() ) ); aReq.AppendItem( SfxAllEnumItem( rPool.GetWhich(nSlotId), pSlot->GetValue() ) );
pDispatcher->_Execute( *pShell, *pRealSlot, aReq, aReq.GetCallMode() | SfxCallMode::RECORD ); pDispatcher->Execute_( *pShell, *pRealSlot, aReq, aReq.GetCallMode() | SfxCallMode::RECORD );
} }
else if ( SfxSlotKind::Attribute == pSlot->GetKind() ) else if ( SfxSlotKind::Attribute == pSlot->GetKind() )
{ {
...@@ -1249,10 +1249,10 @@ void SfxBindings::Execute_Impl( SfxRequest& aReq, const SfxSlot* pSlot, SfxShell ...@@ -1249,10 +1249,10 @@ void SfxBindings::Execute_Impl( SfxRequest& aReq, const SfxSlot* pSlot, SfxShell
} }
} }
pDispatcher->_Execute( *pShell, *pSlot, aReq, aReq.GetCallMode() | SfxCallMode::RECORD ); pDispatcher->Execute_( *pShell, *pSlot, aReq, aReq.GetCallMode() | SfxCallMode::RECORD );
} }
else else
pDispatcher->_Execute( *pShell, *pSlot, aReq, aReq.GetCallMode() | SfxCallMode::RECORD ); pDispatcher->Execute_( *pShell, *pSlot, aReq, aReq.GetCallMode() | SfxCallMode::RECORD );
} }
......
...@@ -787,7 +787,7 @@ bool SfxDispatcher::GetShellAndSlot_Impl(sal_uInt16 nSlot, SfxShell** ppShell, ...@@ -787,7 +787,7 @@ bool SfxDispatcher::GetShellAndSlot_Impl(sal_uInt16 nSlot, SfxShell** ppShell,
Flush(); Flush();
SfxSlotServer aSvr; SfxSlotServer aSvr;
if ( _FindServer(nSlot, aSvr, bModal) ) if ( FindServer_(nSlot, aSvr, bModal) )
{ {
if ( bOwnShellsOnly && aSvr.GetShellLevel() >= xImp->aStack.size() ) if ( bOwnShellsOnly && aSvr.GetShellLevel() >= xImp->aStack.size() )
return false; return false;
...@@ -813,7 +813,7 @@ bool SfxDispatcher::GetShellAndSlot_Impl(sal_uInt16 nSlot, SfxShell** ppShell, ...@@ -813,7 +813,7 @@ bool SfxDispatcher::GetShellAndSlot_Impl(sal_uInt16 nSlot, SfxShell** ppShell,
@param rReq function to be performed (Id and optional parameters) @param rReq function to be performed (Id and optional parameters)
@param eCallMode Synchronously, asynchronously or as shown in the slot @param eCallMode Synchronously, asynchronously or as shown in the slot
*/ */
void SfxDispatcher::_Execute(SfxShell& rShell, const SfxSlot& rSlot, void SfxDispatcher::Execute_(SfxShell& rShell, const SfxSlot& rSlot,
SfxRequest& rReq, SfxCallMode eCallMode) SfxRequest& rReq, SfxCallMode eCallMode)
{ {
DBG_ASSERT( !xImp->bFlushing, "recursive call to dispatcher" ); DBG_ASSERT( !xImp->bFlushing, "recursive call to dispatcher" );
...@@ -914,7 +914,7 @@ const SfxPoolItem* SfxDispatcher::Execute(sal_uInt16 nSlot, SfxCallMode nCall, ...@@ -914,7 +914,7 @@ const SfxPoolItem* SfxDispatcher::Execute(sal_uInt16 nSlot, SfxCallMode nCall,
aReq.SetInternalArgs_Impl( *pInternalArgs ); aReq.SetInternalArgs_Impl( *pInternalArgs );
aReq.SetModifier( nModi ); aReq.SetModifier( nModi );
_Execute( *pShell, *pSlot, aReq, nCall ); Execute_( *pShell, *pSlot, aReq, nCall );
return aReq.GetReturnValue(); return aReq.GetReturnValue();
} }
return nullptr; return nullptr;
...@@ -963,7 +963,7 @@ const SfxPoolItem* SfxDispatcher::Execute(sal_uInt16 nSlot, SfxCallMode eCall, ...@@ -963,7 +963,7 @@ const SfxPoolItem* SfxDispatcher::Execute(sal_uInt16 nSlot, SfxCallMode eCall,
aSet.Put( **pArg ); aSet.Put( **pArg );
pReq->SetInternalArgs_Impl( aSet ); pReq->SetInternalArgs_Impl( aSet );
} }
_Execute( *pShell, *pSlot, *pReq, eCall ); Execute_( *pShell, *pSlot, *pReq, eCall );
const SfxPoolItem* pRet = pReq->GetReturnValue(); const SfxPoolItem* pRet = pReq->GetReturnValue();
delete pReq; return pRet; delete pReq; return pRet;
} }
...@@ -1002,7 +1002,7 @@ const SfxPoolItem* SfxDispatcher::Execute(sal_uInt16 nSlot, SfxCallMode eCall, ...@@ -1002,7 +1002,7 @@ const SfxPoolItem* SfxDispatcher::Execute(sal_uInt16 nSlot, SfxCallMode eCall,
MappedPut_Impl( aSet, *pArg ); MappedPut_Impl( aSet, *pArg );
SfxRequest aReq( nSlot, eCall, aSet ); SfxRequest aReq( nSlot, eCall, aSet );
aReq.SetModifier( 0 ); aReq.SetModifier( 0 );
_Execute( *pShell, *pSlot, aReq, eCall ); Execute_( *pShell, *pSlot, aReq, eCall );
return aReq.GetReturnValue(); return aReq.GetReturnValue();
} }
return nullptr; return nullptr;
...@@ -1054,7 +1054,7 @@ const SfxPoolItem* SfxDispatcher::ExecuteList(sal_uInt16 nSlot, SfxCallMode eCal ...@@ -1054,7 +1054,7 @@ const SfxPoolItem* SfxDispatcher::ExecuteList(sal_uInt16 nSlot, SfxCallMode eCal
} }
SfxRequest aReq( nSlot, eCall, aSet ); SfxRequest aReq( nSlot, eCall, aSet );
_Execute( *pShell, *pSlot, aReq, eCall ); Execute_( *pShell, *pSlot, aReq, eCall );
return aReq.GetReturnValue(); return aReq.GetReturnValue();
} }
return nullptr; return nullptr;
...@@ -1074,7 +1074,7 @@ IMPL_LINK_TYPED(SfxDispatcher, PostMsgHandler, SfxRequest*, pReq, void) ...@@ -1074,7 +1074,7 @@ IMPL_LINK_TYPED(SfxDispatcher, PostMsgHandler, SfxRequest*, pReq, void)
{ {
Flush(); Flush();
SfxSlotServer aSvr; SfxSlotServer aSvr;
if ( _FindServer(pReq->GetSlot(), aSvr, true ) ) // HACK(x), whatever that was supposed to mean if ( FindServer_(pReq->GetSlot(), aSvr, true ) ) // HACK(x), whatever that was supposed to mean
{ {
const SfxSlot *pSlot = aSvr.GetSlot(); const SfxSlot *pSlot = aSvr.GetSlot();
SfxShell *pSh = GetShell(aSvr.GetShellLevel()); SfxShell *pSh = GetShell(aSvr.GetShellLevel());
...@@ -1222,7 +1222,7 @@ void SfxDispatcher::Update_Impl( bool bForce ) ...@@ -1222,7 +1222,7 @@ void SfxDispatcher::Update_Impl( bool bForce )
pActDispat = pActDispat->xImp->pParent; pActDispat = pActDispat->xImp->pParent;
} }
_Update_Impl( bUIActive, !bIsIPActive, bIsIPActive, pTaskWin ); Update_Impl_( bUIActive, !bIsIPActive, bIsIPActive, pTaskWin );
if ( (bUIActive || bIsActive) && !comphelper::LibreOfficeKit::isActive() ) if ( (bUIActive || bIsActive) && !comphelper::LibreOfficeKit::isActive() )
pWorkWin->UpdateObjectBars_Impl(); pWorkWin->UpdateObjectBars_Impl();
...@@ -1235,7 +1235,7 @@ void SfxDispatcher::Update_Impl( bool bForce ) ...@@ -1235,7 +1235,7 @@ void SfxDispatcher::Update_Impl( bool bForce )
return; return;
} }
void SfxDispatcher::_Update_Impl( bool bUIActive, bool bIsMDIApp, bool bIsIPOwner, SfxWorkWindow *pTaskWin ) void SfxDispatcher::Update_Impl_( bool bUIActive, bool bIsMDIApp, bool bIsIPOwner, SfxWorkWindow *pTaskWin )
{ {
SfxGetpApp(); SfxGetpApp();
SfxWorkWindow *pWorkWin = xImp->pFrame->GetFrame().GetWorkWindow_Impl(); SfxWorkWindow *pWorkWin = xImp->pFrame->GetFrame().GetWorkWindow_Impl();
...@@ -1250,7 +1250,7 @@ void SfxDispatcher::_Update_Impl( bool bUIActive, bool bIsMDIApp, bool bIsIPOwne ...@@ -1250,7 +1250,7 @@ void SfxDispatcher::_Update_Impl( bool bUIActive, bool bIsMDIApp, bool bIsIPOwne
} }
if ( xImp->pParent && !xImp->bQuiet /* && bUIActive */ ) if ( xImp->pParent && !xImp->bQuiet /* && bUIActive */ )
xImp->pParent->_Update_Impl( bUIActive, bIsMDIApp, bIsIPOwner, pTaskWin ); xImp->pParent->Update_Impl_( bUIActive, bIsMDIApp, bIsIPOwner, pTaskWin );
for (sal_uInt16 n=0; n<SFX_OBJECTBAR_MAX; n++) for (sal_uInt16 n=0; n<SFX_OBJECTBAR_MAX; n++)
xImp->aObjBars[n].nResId = 0; xImp->aObjBars[n].nResId = 0;
...@@ -1642,7 +1642,7 @@ SfxSlotFilterState SfxDispatcher::IsSlotEnabledByFilter_Impl( sal_uInt16 nSID ) ...@@ -1642,7 +1642,7 @@ SfxSlotFilterState SfxDispatcher::IsSlotEnabledByFilter_Impl( sal_uInt16 nSID )
false false
The Slot is currently not served, rServer is invalid. The Slot is currently not served, rServer is invalid.
*/ */
bool SfxDispatcher::_FindServer(sal_uInt16 nSlot, SfxSlotServer& rServer, bool bModal) bool SfxDispatcher::FindServer_(sal_uInt16 nSlot, SfxSlotServer& rServer, bool bModal)
{ {
SFX_STACK(SfxDispatcher::_FindServer); SFX_STACK(SfxDispatcher::_FindServer);
...@@ -1701,7 +1701,7 @@ bool SfxDispatcher::_FindServer(sal_uInt16 nSlot, SfxSlotServer& rServer, bool b ...@@ -1701,7 +1701,7 @@ bool SfxDispatcher::_FindServer(sal_uInt16 nSlot, SfxSlotServer& rServer, bool b
{ {
if ( xImp->pParent ) if ( xImp->pParent )
{ {
bool bRet = xImp->pParent->_FindServer( nSlot, rServer, bModal ); bool bRet = xImp->pParent->FindServer_( nSlot, rServer, bModal );
rServer.SetShellLevel rServer.SetShellLevel
( rServer.GetShellLevel() + xImp->aStack.size() ); ( rServer.GetShellLevel() + xImp->aStack.size() );
return bRet; return bRet;
...@@ -1775,7 +1775,7 @@ bool SfxDispatcher::_FindServer(sal_uInt16 nSlot, SfxSlotServer& rServer, bool b ...@@ -1775,7 +1775,7 @@ bool SfxDispatcher::_FindServer(sal_uInt16 nSlot, SfxSlotServer& rServer, bool b
@param rState SfxItemSet to be filled @param rState SfxItemSet to be filled
@param pRealSlot The actual Slot if possible @param pRealSlot The actual Slot if possible
*/ */
bool SfxDispatcher::_FillState(const SfxSlotServer& rSvr, SfxItemSet& rState, bool SfxDispatcher::FillState_(const SfxSlotServer& rSvr, SfxItemSet& rState,
const SfxSlot* pRealSlot) const SfxSlot* pRealSlot)
{ {
SFX_STACK(SfxDispatcher::_FillState); SFX_STACK(SfxDispatcher::_FillState);
......
...@@ -233,7 +233,7 @@ const SfxSlotServer* SfxStateCache::GetSlotServer( SfxDispatcher &rDispat , cons ...@@ -233,7 +233,7 @@ const SfxSlotServer* SfxStateCache::GetSlotServer( SfxDispatcher &rDispat , cons
if ( bSlotDirty ) if ( bSlotDirty )
{ {
// get the SlotServer; we need it for internal controllers anyway, but also in most cases // get the SlotServer; we need it for internal controllers anyway, but also in most cases
rDispat._FindServer( nId, aSlotServ, false ); rDispat.FindServer_( nId, aSlotServ, false );
DBG_ASSERT( !pDispatch, "Old Dispatch not removed!" ); DBG_ASSERT( !pDispatch, "Old Dispatch not removed!" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment