diff options
Diffstat (limited to 'sd')
-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 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()) { }; |