[Libreoffice-commits] core.git: sd/source
Julien Nabet (via logerrit)
logerrit at kemper.freedesktop.org
Tue Nov 26 06:49:43 UTC 2019
sd/source/filter/eppt/grouptable.hxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 1071e51d0177122ca5d68cb1d677d5e719d09dd6
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Tue Nov 26 08:48:24 2019 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Tue Nov 26 07:48:43 2019 +0100
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 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
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)
{
};
More information about the Libreoffice-commits
mailing list