[Libreoffice-commits] core.git: sd/source
Julien Nabet (via logerrit)
logerrit at kemper.freedesktop.org
Mon Nov 25 22:59:58 UTC 2019
sd/source/filter/eppt/grouptable.hxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 685a0c2de4e12cde691ebff63b0f2348a7d68b58
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Mon Nov 25 18:53:48 2019 +0100
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Nov 25 23:59:01 2019 +0100
Fix 9d63592d530e9ad5ab2d6aee0aba5bc0c117aae3
Thank you Vincent!
Change-Id: Icb300158fe0b8f10bcee81c1f9d8a4a4a63dafc5
Reviewed-on: https://gerrit.libreoffice.org/83706
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
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())
{
};
More information about the Libreoffice-commits
mailing list