Lines Matching refs:pVar
2261 SbxVariable* pVar = mpLib->GetObjects()->Get( nObj ); in hasElements() local
2262 if ( pVar->ISA( SbxObject ) && ( ((SbxObject*)pVar)->GetSbxId() == SBXID_DIALOG ) ) in hasElements()
2275 SbxVariable* pVar = mpLib->GetObjects()->Find( aName, SbxCLASS_DONTCARE ); in getByName() local
2276 if( !( pVar && pVar->ISA( SbxObject ) && in getByName()
2277 ( ((SbxObject*)pVar)->GetSbxId() == SBXID_DIALOG ) ) ) in getByName()
2284 ( aName, implGetDialogData( (SbxObject*)pVar ) ); in getByName()
2302 SbxVariable* pVar = mpLib->GetObjects()->Get( nObj ); in getElementNames() local
2303 if ( pVar->ISA( SbxObject ) && ( ((SbxObject*)pVar)->GetSbxId() == SBXID_DIALOG ) ) in getElementNames()
2305 pRetSeq[ nDialogCounter ] = ::rtl::OUString( pVar->GetName() ); in getElementNames()
2317 SbxVariable* pVar = mpLib->GetObjects()->Find( aName, SbxCLASS_DONTCARE ); in hasByName() local
2318 if( pVar && pVar->ISA( SbxObject ) && in hasByName()
2319 ( ((SbxObject*)pVar)->GetSbxId() == SBXID_DIALOG ) ) in hasByName()
2355 SbxVariable* pVar = mpLib->GetObjects()->Find( Name, SbxCLASS_DONTCARE ); in removeByName() local
2356 if( !( pVar && pVar->ISA( SbxObject ) && in removeByName()
2357 ( ((SbxObject*)pVar)->GetSbxId() == SBXID_DIALOG ) ) ) in removeByName()
2361 mpLib->Remove( pVar ); in removeByName()