Lines Matching refs:aEvt

220 			::com::sun::star::lang::EventObject aEvt(*this);  in AttachForm()
223 ((::com::sun::star::form::XLoadListener*)aIt.next())->unloaded(aEvt); in AttachForm()
237 ::com::sun::star::lang::EventObject aEvt(*this); in AttachForm()
240 ((::com::sun::star::form::XLoadListener*)aIt.next())->loaded(aEvt); in AttachForm()
1152 ::com::sun::star::lang::EventObject aEvt(*this); in dispose()
1153 m_aLoadListeners.disposeAndClear(aEvt); in dispose()
1154 m_aRowSetListeners.disposeAndClear(aEvt); in dispose()
1155 m_aRowSetApproveListeners.disposeAndClear(aEvt); in dispose()
1156 m_aErrorListeners.disposeAndClear(aEvt); in dispose()
1157 m_aParameterListeners.disposeAndClear(aEvt); in dispose()
1158 m_aSubmitListeners.disposeAndClear(aEvt); in dispose()
1159 m_aResetListeners.disposeAndClear(aEvt); in dispose()
1163 m_aPropertiesChangeListeners.disposeAndClear(aEvt); in dispose()
1165 m_aDisposeListeners.disposeAndClear(aEvt); in dispose()
1166 m_aContainerListeners.disposeAndClear(aEvt); in dispose()
1216 ::com::sun::star::beans::PropertyChangeEvent aEvt; in setFastPropertyValue()
1217 aEvt.Source = *this; in setFastPropertyValue()
1218 aEvt.PropertyName = PROPERTY_NAME; in setFastPropertyValue()
1219 aEvt.PropertyHandle = m_nNamePropHandle; in setFastPropertyValue()
1220 aEvt.OldValue <<= m_sName; in setFastPropertyValue()
1221 aEvt.NewValue = aValue; in setFastPropertyValue()
1227 ((::com::sun::star::beans::XPropertyChangeListener*)aIt.next())->propertyChange(aEvt); in setFastPropertyValue()
1526 ::com::sun::star::container::ContainerEvent aEvt; in IMPLEMENT_LISTENER_ADMINISTRATION()
1527 aEvt.Source = *this; in IMPLEMENT_LISTENER_ADMINISTRATION()
1528 aEvt.Accessor <<= nIndex; in IMPLEMENT_LISTENER_ADMINISTRATION()
1529 aEvt.Element <<= xElement; in IMPLEMENT_LISTENER_ADMINISTRATION()
1532 ((::com::sun::star::container::XContainerListener*)aIt.next())->elementInserted(aEvt); in IMPLEMENT_LISTENER_ADMINISTRATION()
1646 ::com::sun::star::container::ContainerEvent aEvt; in removeByIndex()
1647 aEvt.Source = *this; in removeByIndex()
1648 aEvt.Element <<= xAffected; in removeByIndex()
1651 ((::com::sun::star::container::XContainerListener*)aIt.next())->elementRemoved(aEvt); in removeByIndex()
1707 ::com::sun::star::container::ContainerEvent aEvt; in replaceByIndex()
1708 aEvt.Source = *this; in replaceByIndex()
1709 aEvt.Accessor <<= (sal_Int32)_rIndex; in replaceByIndex()
1710 aEvt.Element <<= xElement; in replaceByIndex()
1711 aEvt.ReplacedElement <<= xOld; in replaceByIndex()
1715 ((::com::sun::star::container::XContainerListener*)aIt.next())->elementReplaced(aEvt); in replaceByIndex()