Lines Matching refs:pMethod

285 	SbMethod* pMethod = 0;  in GetMacro()  local
293 pMethod = (SbMethod*)pModule->GetMethods()->Find( aMacroName, SbxCLASS_METHOD ); in GetMacro()
296 return pMethod; in GetMacro()
303 SbMethod* pMethod = GetMacro(); in DeleteMacro() local
304 DBG_ASSERT( pMethod, "DeleteMacro: Kein Macro !" ); in DeleteMacro()
305 if ( pMethod && QueryDelMacro( pMethod->GetName(), this ) ) in DeleteMacro()
316 StarBASIC* pBasic = BasicIDE::FindBasic( pMethod ); in DeleteMacro()
329 SbModule* pModule = pMethod->GetModule(); in DeleteMacro()
333 pMethod->GetLineRange( nStart, nEnd ); in DeleteMacro()
334 pModule->GetMethods()->Remove( pMethod ); in DeleteMacro()
352 SbMethod* pMethod = 0; in CreateMacro() local
402 pMethod = pModule ? BasicIDE::CreateMacro( pModule, aSubName ) : NULL; in CreateMacro()
405 return pMethod; in CreateMacro()
425 SbMethod* pMethod = GetMacro(); in CheckButtons() local
446 sal_Bool bEnable = pMethod ? sal_True : sal_False; in CheckButtons()
455 EnableButton( aAssignButton, pMethod ? sal_True : sal_False ); in CheckButtons()
469 bNewDelIsDel = pMethod ? sal_True : sal_False; in CheckButtons()
505 SbMethod* pMethod = GetMacro(); in IMPL_LINK_INLINE_START() local
506 if ( pMethod && !QueryReplaceMacro( pMethod->GetName(), this ) ) in IMPL_LINK_INLINE_START()
559 SbMethod* pMethod = (SbMethod*)pModule->GetMethods()->Get( iMeth ); in IMPL_LINK() local
560 if( pMethod->IsHidden() ) in IMPL_LINK()
563 DBG_ASSERT( pMethod, "Methode nicht gefunden! (NULL)" ); in IMPL_LINK()
567 pMethod->GetLineRange( nStart, nEnd ); in IMPL_LINK()
580 aMacros.Insert( pMethod, nPos ); in IMPL_LINK()
674 SbMethod* pMethod = GetMacro(); in IMPL_LINK() local
675 SbModule* pModule = pMethod ? pMethod->GetModule() : NULL; in IMPL_LINK()
699 SbMethod* pMethod = GetMacro(); in IMPL_LINK() local
700 if ( pMethod && !QueryReplaceMacro( pMethod->GetName(), this ) ) in IMPL_LINK()
775 SbMethod* pMethod = CreateMacro(); in IMPL_LINK() local
776 if ( pMethod ) in IMPL_LINK()
778 aInfoItem.SetMethod( pMethod->GetName() ); in IMPL_LINK()
779 aInfoItem.SetModule( pMethod->GetModule()->GetName() ); in IMPL_LINK()
780 aInfoItem.SetLib( pMethod->GetModule()->GetParent()->GetName() ); in IMPL_LINK()
809 SbMethod* pMethod = GetMacro(); in IMPL_LINK() local
811 DBG_ASSERT( pMethod, "Method?" ); in IMPL_LINK()
812 String aComment( GetInfo( pMethod ) ); in IMPL_LINK()