diff options
-rw-r--r-- | sc/source/ui/view/printfun.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/ui/view/printfun.cxx b/sc/source/ui/view/printfun.cxx index d5f1d8634865..3cb543a8fbaf 100644 --- a/sc/source/ui/view/printfun.cxx +++ b/sc/source/ui/view/printfun.cxx @@ -3090,6 +3090,10 @@ void PrintPageRanges::calculate(ScDocument& rDoc, rDoc.SetPageSize(nPrintTab, rDocSize); + // Clear the map to prevent any outdated values to "survive" when + // we have to recalculate the new values anyway + m_xPageRows->clear(); + // #i123672# use dynamic mem to react on size changes if (m_xPageEndX->size() < static_cast<size_t>(rDoc.MaxCol()) + 1) { |