diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-07 11:35:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-08 08:49:02 +0100 |
commit | 9a3810ba9b8b52096bee29e83d1eb5ce57512270 (patch) | |
tree | 03d49c1a0a145eeb55402a7ef50c24567df6318e /comphelper | |
parent | 0d43023ed4bc14207b9ba15367b123f2af739d1b (diff) |
pack some data structures
Change-Id: I7ef990b8aa7b26c413b54186c360ed3f858d4e26
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88170
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/container/enumhelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/container/enumhelper.cxx b/comphelper/source/container/enumhelper.cxx index 1267bb1e66d9..6c05c89d3cd7 100644 --- a/comphelper/source/container/enumhelper.cxx +++ b/comphelper/source/container/enumhelper.cxx @@ -135,8 +135,8 @@ void OEnumerationByName::impl_stopDisposeListening() } OEnumerationByIndex::OEnumerationByIndex(const css::uno::Reference< css::container::XIndexAccess >& _rxAccess) - :m_nPos(0) - ,m_xAccess(_rxAccess) + :m_xAccess(_rxAccess) + ,m_nPos(0) ,m_bListening(false) { impl_startDisposeListening(); |