diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2019-11-26 08:48:24 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-11-26 07:48:43 +0100 |
commit | 1071e51d0177122ca5d68cb1d677d5e719d09dd6 (patch) | |
tree | 3cbd05185963ad1be31cfa1417f522e80749b349 /sd/source | |
parent | 29e98888e7e17515d9d4ae60ad27fa30ec374412 (diff) |
Revert "Fix 9d63592d530e9ad5ab2d6aee0aba5bc0c117aae3"
It's possible to make a better fix here
This reverts commit 685a0c2de4e12cde691ebff63b0f2348a7d68b58.
Change-Id: I764a2a296170cd66e6d2cf4f9646488c099fa870
Reviewed-on: https://gerrit.libreoffice.org/83724
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/filter/eppt/grouptable.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/filter/eppt/grouptable.hxx b/sd/source/filter/eppt/grouptable.hxx index 1e16b377f0a1..a88201e195ee 100644 --- a/sd/source/filter/eppt/grouptable.hxx +++ b/sd/source/filter/eppt/grouptable.hxx @@ -26,14 +26,14 @@ struct GroupEntry { - css::uno::Reference< css::container::XIndexAccess > mXIndexAccess; sal_uInt32 mnCurrentPos; sal_uInt32 mnCount; + css::uno::Reference< css::container::XIndexAccess > mXIndexAccess; explicit GroupEntry( css::uno::Reference< css::container::XIndexAccess > const & rIndex ) - : mXIndexAccess(rIndex), - mnCurrentPos(0), - mnCount(mXIndexAccess->getCount()) + : mnCurrentPos(0), + mnCount(mXIndexAccess->getCount()), + mXIndexAccess(rIndex) { }; |