diff options
author | Philippe Jung <phil.jung@free.fr> | 2015-05-27 15:33:23 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2015-05-28 12:03:59 +0000 |
commit | 0b52089c1d88a5223981d8c177b3044d53eff700 (patch) | |
tree | f1f4078db8fd6d325a405d8b0fbc5576fb5a4633 /sc | |
parent | 788b778d168f5de13479eb9a83369810a06232fb (diff) |
Bug 91489 - CONDITIONAL FORMATTING: Crash on select Icon Set from dialog
Removed the recalcAll line in IMPL_LINK_NOARG( ScIconSetFrmtEntry, IconSetTypeHdl )
1) ScCondFormatList already calls RecalcAll on selection new/changed
2) Without this line, it does not crash
Change-Id: I8aa45f691d33d8ad046a88e7695913e2ccff3caf
Reviewed-on: https://gerrit.libreoffice.org/15928
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx index 8c4ddb196c46..b48a82b0e866 100644 --- a/sc/source/ui/condformat/condformatdlgentry.cxx +++ b/sc/source/ui/condformat/condformatdlgentry.cxx @@ -1598,7 +1598,6 @@ IMPL_LINK_NOARG( ScIconSetFrmtEntry, IconSetTypeHdl ) maEntries[0]->SetFirstEntry(); SetHeight(); - static_cast<ScCondFormatList*>(GetParent())->RecalcAll(); return 0; } |