diff options
Diffstat (limited to 'sc/source/ui/docshell/docsh.cxx')
-rw-r--r-- | sc/source/ui/docshell/docsh.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx index 1261dab65c72..79ce486e6e6c 100644 --- a/sc/source/ui/docshell/docsh.cxx +++ b/sc/source/ui/docshell/docsh.cxx @@ -3181,4 +3181,14 @@ bool ScDocShell::GetProtectionHash( /*out*/ ::com::sun::star::uno::Sequence< sal return bRes; } +void ScDocShell::libreOfficeKitCallback(int nType, const char* pPayload) const +{ + aDocument.GetDrawLayer()->libreOfficeKitCallback(nType, pPayload); +} + +bool ScDocShell::isTiledRendering() const +{ + return aDocument.GetDrawLayer()->isTiledRendering(); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |