Lines Matching refs:pE

135     DictionaryEntry* pE;  in save()  local
139 pE = m_aToBeDeleted[nN]; in save()
140 m_xDictionary->removeEntry( pE->m_aTerm, pE->m_aMapping ); in save()
144 pE = getEntryOnPos( nN ); in save()
145 if(pE->m_bNewEntry) in save()
149 m_xDictionary->addEntry( pE->m_aTerm, pE->m_aMapping ); in save()
150 … xPropertyType->setPropertyType( pE->m_aTerm, pE->m_aMapping, pE->m_nConversionPropertyType ); in save()
170 DictionaryEntry* pE = m_aToBeDeleted[nN]; in deleteAll() local
171 delete pE; in deleteAll()
243 DictionaryEntry* pE = 0; in getTermEntry() local
246 pE = getEntryOnPos( nN ); in getTermEntry()
247 if( pE && rTerm.equals( pE->m_aTerm ) ) in getTermEntry()
248 return pE; in getTermEntry()
668 DictionaryEntry* pE = getActiveDictionary().getFirstSelectedEntry(); in IMPL_LINK() local
669 if(pE) in IMPL_LINK()
671 m_aED_Term.SetText( pE->m_aTerm ); in IMPL_LINK()
672 m_aED_Mapping.SetText( pE->m_aMapping ); in IMPL_LINK()
673 sal_Int16 nPos = pE->m_nConversionPropertyType-1; in IMPL_LINK()
691 DictionaryEntry* pE = getActiveDictionary().getFirstSelectedEntry(); in isEditFieldsContentEqualsSelectedListContent() local
692 if( pE ) in isEditFieldsContentEqualsSelectedListContent()
694 if( pE->m_aTerm != rtl::OUString( m_aED_Term.GetText() ) ) in isEditFieldsContentEqualsSelectedListContent()
696 if( pE->m_aMapping != rtl::OUString( m_aED_Mapping.GetText() ) ) in isEditFieldsContentEqualsSelectedListContent()
698 if( pE->m_nConversionPropertyType != m_aLB_Property.GetSelectEntryPos()+1 ) in isEditFieldsContentEqualsSelectedListContent()
780 DictionaryEntry* pE = rActive.getFirstSelectedEntry(); in IMPL_LINK() local
781 if( pE->m_aTerm != aTerm ) in IMPL_LINK()
784 if( pE ) in IMPL_LINK()
786 if( pE->m_aMapping != aMapping || pE->m_nConversionPropertyType != nConversionPropertyType ) in IMPL_LINK()
790 sal_uIntPtr nPos = rReverse.deleteEntries( pE->m_aMapping ); in IMPL_LINK()