summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2019-11-25 18:53:48 +0100
committerJulien Nabet <serval2412@yahoo.fr>2019-11-25 23:59:01 +0100
commit685a0c2de4e12cde691ebff63b0f2348a7d68b58 (patch)
tree9251a383b5963d4c1dc71b2fc1371b7143db48e5 /sd
parentae71a0adef64b292ab01194817d2d763f7c85433 (diff)
Fix 9d63592d530e9ad5ab2d6aee0aba5bc0c117aae3
Thank you Vincent! Change-Id: Icb300158fe0b8f10bcee81c1f9d8a4a4a63dafc5 Reviewed-on: https://gerrit.libreoffice.org/83706 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/grouptable.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/filter/eppt/grouptable.hxx b/sd/source/filter/eppt/grouptable.hxx
index a88201e195ee..1e16b377f0a1 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 )
- : mnCurrentPos(0),
- mnCount(mXIndexAccess->getCount()),
- mXIndexAccess(rIndex)
+ : mXIndexAccess(rIndex),
+ mnCurrentPos(0),
+ mnCount(mXIndexAccess->getCount())
{
};