[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sc/source
Dimitri Bouron
bouron.d at gmail.com
Tue Sep 19 11:25:23 UTC 2017
sc/source/ui/view/dbfunc3.cxx | 14 ++++++++++++++
1 file changed, 14 insertions(+)
New commits:
commit bab7e8b836bbd0ab609f6f846c3fa880dcf9859c
Author: Dimitri Bouron <bouron.d at gmail.com>
Date: Thu Aug 3 11:57:48 2017 +0200
tdf#111305: Fix group name refresh in pivot table
Change-Id: Ibc22bfba5765aba3014651df50afb23b893d2b5a
Reviewed-on: https://gerrit.libreoffice.org/40712
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Eike Rathke <erack at redhat.com>
(cherry picked from commit 3d37e10684edf9536beefe5670b144571e6c9792)
diff --git a/sc/source/ui/view/dbfunc3.cxx b/sc/source/ui/view/dbfunc3.cxx
index e8eccb1a62f2..304a1428d6bb 100644
--- a/sc/source/ui/view/dbfunc3.cxx
+++ b/sc/source/ui/view/dbfunc3.cxx
@@ -73,6 +73,8 @@
#include <unordered_set>
#include <unordered_map>
#include <vector>
+#include <set>
+#include <algorithm>
using namespace com::sun::star;
using ::com::sun::star::uno::Any;
@@ -1337,6 +1339,7 @@ void ScDBFunc::DataPilotInput( const ScAddress& rPos, const OUString& rString )
pDPObj->BuildAllDimensionMembers();
ScDPSaveData aData( *pDPObj->GetSaveData() );
bool bChange = false;
+ bool bNeedReloadGroups = false;
sal_uInt16 nOrient = DataPilotFieldOrientation_HIDDEN;
long nField = pDPObj->GetHeaderDim( rPos, nOrient );
@@ -1457,6 +1460,7 @@ void ScDBFunc::DataPilotInput( const ScAddress& rPos, const OUString& rString )
pSaveMember->SetName( rString );
bChange = true;
+ bNeedReloadGroups = true;
}
else
nErrorId = STR_INVALIDNAME;
@@ -1575,6 +1579,16 @@ void ScDBFunc::DataPilotInput( const ScAddress& rPos, const OUString& rString )
// apply changes
ScDBDocFunc aFunc( *GetViewData().GetDocShell() );
pDPObj->SetSaveData( aData );
+ if (bNeedReloadGroups)
+ {
+ ScDPCollection* pDPs = pDoc->GetDPCollection();
+ if (pDPs)
+ {
+ std::set<ScDPObject*> aRefs;
+ // tdf#111305: Reload groups in cache after modifications.
+ pDPs->ReloadGroupsInCache(pDPObj, aRefs);
+ } // pDPs
+ } // bNeedReloadGroups
aFunc.UpdatePivotTable(*pDPObj, true, false);
}
else
More information about the Libreoffice-commits
mailing list