From b2f4e18f63457d11a783db939729450ddbe9d594 Mon Sep 17 00:00:00 2001 From: Mert Tumer Date: Tue, 13 Oct 2020 20:16:22 +0300 Subject: Check render parameters for AutoSpellChecking Conflicts: sc/qa/unit/tiledrendering/tiledrendering.cxx sw/qa/extras/tiledrendering/tiledrendering.cxx Change-Id: Ife2551b4023461da26e70ac3de505adf9d7db1e8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106602 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- sd/source/ui/unoidl/unomodel.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sd/source/ui/unoidl') diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 314741f228cf..4160a8bdc3a6 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -2443,6 +2443,8 @@ void SdXImpressDocument::initializeForTiledRendering(const css::uno::SequenceSetPageShadowVisible(rValue.Value.get()); else if (rValue.Name == ".uno:Author" && rValue.Value.has()) pDrawView->SetAuthor(rValue.Value.get()); + else if (rValue.Name == ".uno:SpellOnline" && rValue.Value.has()) + mpDoc->SetOnlineSpell(rValue.Value.get()); } // Disable comments if requested -- cgit