Lines Matching refs:mpObject

48 	SdrObjectWeakRef    mpObject;  member in SvxUnoGluePointAccess
213 : mpObject( pObject ) in SvxUnoGluePointAccess()
224 if( mpObject.is() ) in insert()
226 SdrGluePointList* pList = mpObject->ForceGluePointList(); in insert()
239 mpObject->ActionChanged(); in insert()
254 if( mpObject.is() && ( Identifier >= NON_USER_DEFINED_GLUE_POINTS )) in removeByIdentifier()
258 SdrGluePointList* pList = const_cast<SdrGluePointList*>(mpObject->GetGluePointList()); in removeByIdentifier()
269 mpObject->ActionChanged(); in removeByIdentifier()
283 if( mpObject.is() && mpObject->IsNode() ) in replaceByIdentifer()
291 SdrGluePointList* pList = const_cast< SdrGluePointList* >( mpObject->GetGluePointList() ); in replaceByIdentifer()
303 mpObject->ActionChanged(); in replaceByIdentifer()
317 if( mpObject.is() && mpObject->IsNode() ) in getByIdentifier()
323 SdrGluePoint aTempPoint = mpObject->GetVertexGluePoint( (sal_uInt16)Identifier ); in getByIdentifier()
332 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getByIdentifier()
357 if( mpObject.is() ) in getIdentifiers()
359 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getIdentifiers()
389 if( mpObject.is() ) in insertByIndex()
391 SdrGluePointList* pList = mpObject->ForceGluePointList(); in insertByIndex()
403 mpObject->ActionChanged(); in insertByIndex()
419 if( mpObject.is() ) in removeByIndex()
421 SdrGluePointList* pList = mpObject->ForceGluePointList(); in removeByIndex()
430 mpObject->ActionChanged(); in removeByIndex()
451 if( mpObject.is() && Index >= 0 ) in replaceByIndex()
453 SdrGluePointList* pList = const_cast< SdrGluePointList* >( mpObject->GetGluePointList() ); in replaceByIndex()
460 mpObject->ActionChanged(); in replaceByIndex()
473 if( mpObject.is() ) in getCount()
477 if( mpObject->IsNode() ) in getCount()
481 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getCount()
493 if( Index >= 0 && mpObject.is() && mpObject->IsNode() ) in getByIndex()
499 SdrGluePoint aTempPoint = mpObject->GetVertexGluePoint( (sal_uInt16)Index ); in getByIndex()
509 const SdrGluePointList* pList = mpObject->GetGluePointList(); in getByIndex()
535 return mpObject.is() && mpObject->IsNode(); in hasElements()