Home
last modified time | relevance | path

Searched refs:_pInterfaces (Results 1 – 2 of 2) sorted by relevance

/trunk/main/sfx2/source/control/
H A Dmsgpool.cxx76 , _pInterfaces(0) in SfxSlotPool()
93 delete _pInterfaces; in ~SfxSlotPool()
112 if ( _pInterfaces == 0 ) in RegisterInterface()
113 _pInterfaces = new SfxInterfaceArr_Impl; in RegisterInterface()
114 _pInterfaces->Append(&rInterface); in RegisterInterface()
194 DBG_ASSERT( _pInterfaces, "releasing SfxInterface, but there are none" ); in ReleaseInterface()
196 _pInterfaces->Remove(&rInterface); in ReleaseInterface()
206 DBG_ASSERT( _pInterfaces != 0, "no Interfaces registered" ); in GetSlot()
209 for ( sal_uInt16 nInterf = 0; nInterf < _pInterfaces->Count(); ++nInterf ) in GetSlot()
211 const SfxSlot *pDef = _pInterfaces->GetObject(nInterf)->GetSlot(nId); in GetSlot()
[all …]
/trunk/main/sfx2/inc/sfx2/
H A Dmsgpool.hxx49 SfxInterfaceArr_Impl* _pInterfaces; member in SfxSlotPool