summaryrefslogtreecommitdiff
path: root/forms/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-02-14 13:43:04 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-01 07:33:50 +0000
commit929eab216427d9f1c96df8b3ae9dafcad728e04e (patch)
tree26bb435d3d64bcc1219e88c0920ce990d47a8832 /forms/source/inc
parent3f7f497192deb486b1b959996c14f8f094146945 (diff)
sequence->vector in forms
Change-Id: Iea09367a51af8d0003a3ae58f8e7e0e825906367 Reviewed-on: https://gerrit.libreoffice.org/23691 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'forms/source/inc')
-rw-r--r--forms/source/inc/FormComponent.hxx16
1 files changed, 11 insertions, 5 deletions
diff --git a/forms/source/inc/FormComponent.hxx b/forms/source/inc/FormComponent.hxx
index eb5118e89f5f..201cf13f6b97 100644
--- a/forms/source/inc/FormComponent.hxx
+++ b/forms/source/inc/FormComponent.hxx
@@ -132,11 +132,11 @@ namespace frm
void impl_notifyAll_nothrow();
private:
- OControlModel& m_rModel;
- bool m_bLocked;
- css::uno::Sequence< sal_Int32 > m_aHandles;
- css::uno::Sequence< css::uno::Any > m_aOldValues;
- css::uno::Sequence< css::uno::Any > m_aNewValues;
+ OControlModel& m_rModel;
+ bool m_bLocked;
+ std::vector< sal_Int32 > m_aHandles;
+ std::vector< css::uno::Any > m_aOldValues;
+ std::vector< css::uno::Any > m_aNewValues;
private:
ControlModelLock( const ControlModelLock& ) = delete;
@@ -496,6 +496,12 @@ public:
oslInterlockedCount unlockInstance( LockAccess );
void firePropertyChanges(
+ const std::vector< sal_Int32 >& _rHandles,
+ const std::vector< css::uno::Any >& _rOldValues,
+ const std::vector< css::uno::Any >& _rNewValues,
+ LockAccess
+ );
+ void firePropertyChanges(
const css::uno::Sequence< sal_Int32 >& _rHandles,
const css::uno::Sequence< css::uno::Any >& _rOldValues,
const css::uno::Sequence< css::uno::Any >& _rNewValues,