From ac51fb6a8642c5904db7e4de8dc89dabf284488c Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 9 Aug 2016 16:30:23 +0100 Subject: Resolves: tdf#101347 conditional formatting super slow on exit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit since... commit 88a0c7d01b7dfd085a0569030f97cc7de0f0d106 Date: Sat Mar 26 13:11:53 2016 +0100 switch to a listener based cond format update, tdf#95437 I'm obviously assuming here that the notify doesn't matter when the broadcasted is shutting down. Change-Id: I0fef0ac1c1d8757199dcffb3c8ec1b05a73c1f17 Reviewed-on: https://gerrit.libreoffice.org/28006 Reviewed-by: Markus Mohrhard Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara (cherry picked from commit cbab44f5eb27c8a45905167d2443f56b816b4a7b) Reviewed-on: https://gerrit.libreoffice.org/28205 Tested-by: Jenkins (cherry picked from commit 5c1812103a6c0cd29dd18e546d29ee683f675f6d) Reviewed-on: https://gerrit.libreoffice.org/28238 Reviewed-by: Eike Rathke Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- sc/source/core/data/colorscale.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx index 1a088851aa4f..6df2b187991c 100644 --- a/sc/source/core/data/colorscale.cxx +++ b/sc/source/core/data/colorscale.cxx @@ -131,9 +131,14 @@ ScFormulaListener::~ScFormulaListener() stopListening(); } -void ScFormulaListener::Notify( const SfxHint& ) +void ScFormulaListener::Notify(const SfxHint& rHint) { mbDirty = true; + + const SfxSimpleHint* pSimpleHint = dynamic_cast(&rHint); + if (pSimpleHint && pSimpleHint->GetId() == SFX_HINT_DYING) + return; + if (maCallbackFunction) maCallbackFunction(); } -- cgit v1.2.3