summaryrefslogtreecommitdiff
path: root/svx/source/form/formcontroller.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-01-19 19:45:45 +0200
committerNoel Grandin <noel@peralex.com>2016-01-25 08:52:03 +0200
commit752cd07d085ac0aadc99bd512d49072843139032 (patch)
tree21ff2f55761b34bfdd721b5e1ed43333e8874e46 /svx/source/form/formcontroller.cxx
parent0e7cd653ea90da388820220bf6a3eb140b57bbd6 (diff)
InterfaceContainer2 with vector instead of Sequence
create an InterfaceContainer2 class to replace InterfaceContainer. It uses a std::vector instead of a Sequence for the mutable listener list, which provides far better performance. Switch all our internal use-sites to the new class. Change-Id: I6b56cfa511ded2395faa22e68fab3b2f16c3cb88
Diffstat (limited to 'svx/source/form/formcontroller.cxx')
-rw-r--r--svx/source/form/formcontroller.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx
index 3b3fe6edbde3..5d8895abaef4 100644
--- a/svx/source/form/formcontroller.cxx
+++ b/svx/source/form/formcontroller.cxx
@@ -3660,7 +3660,7 @@ sal_Bool SAL_CALL FormController::approveRowChange(const RowChangeEvent& _rEvent
::osl::ClearableMutexGuard aGuard( m_aMutex );
impl_checkDisposed_throw();
- ::cppu::OInterfaceIteratorHelper aIter(m_aRowSetApproveListeners);
+ ::comphelper::OInterfaceIteratorHelper2 aIter(m_aRowSetApproveListeners);
bool bValid = true;
if (aIter.hasMoreElements())
{
@@ -3748,7 +3748,7 @@ sal_Bool SAL_CALL FormController::approveCursorMove(const EventObject& event) th
::osl::MutexGuard aGuard( m_aMutex );
impl_checkDisposed_throw();
- ::cppu::OInterfaceIteratorHelper aIter(m_aRowSetApproveListeners);
+ ::comphelper::OInterfaceIteratorHelper2 aIter(m_aRowSetApproveListeners);
if (aIter.hasMoreElements())
{
EventObject aEvt(event);
@@ -3765,7 +3765,7 @@ sal_Bool SAL_CALL FormController::approveRowSetChange(const EventObject& event)
::osl::MutexGuard aGuard( m_aMutex );
impl_checkDisposed_throw();
- ::cppu::OInterfaceIteratorHelper aIter(m_aRowSetApproveListeners);
+ ::comphelper::OInterfaceIteratorHelper2 aIter(m_aRowSetApproveListeners);
if (aIter.hasMoreElements())
{
EventObject aEvt(event);
@@ -3802,7 +3802,7 @@ void SAL_CALL FormController::errorOccured(const SQLErrorEvent& aEvent) throw( R
::osl::ClearableMutexGuard aGuard( m_aMutex );
impl_checkDisposed_throw();
- ::cppu::OInterfaceIteratorHelper aIter(m_aErrorListeners);
+ ::comphelper::OInterfaceIteratorHelper2 aIter(m_aErrorListeners);
if (aIter.hasMoreElements())
{
SQLErrorEvent aEvt(aEvent);
@@ -3875,7 +3875,7 @@ sal_Bool SAL_CALL FormController::approveParameter(const DatabaseParameterEvent&
::osl::MutexGuard aGuard( m_aMutex );
impl_checkDisposed_throw();
- ::cppu::OInterfaceIteratorHelper aIter(m_aParameterListeners);
+ ::comphelper::OInterfaceIteratorHelper2 aIter(m_aParameterListeners);
if (aIter.hasMoreElements())
{
DatabaseParameterEvent aEvt(aEvent);
@@ -3971,7 +3971,7 @@ sal_Bool SAL_CALL FormController::confirmDelete(const RowChangeEvent& aEvent) th
::osl::MutexGuard aGuard( m_aMutex );
impl_checkDisposed_throw();
- ::cppu::OInterfaceIteratorHelper aIter(m_aDeleteListeners);
+ ::comphelper::OInterfaceIteratorHelper2 aIter(m_aDeleteListeners);
if (aIter.hasMoreElements())
{
RowChangeEvent aEvt(aEvent);