summaryrefslogtreecommitdiff
path: root/sc/source/ui/docshell
diff options
context:
space:
mode:
authorSiqi Liu <me@siqi.fr>2015-04-14 00:55:04 +0200
committerSiqi Liu <me@siqi.fr>2015-04-14 00:55:17 +0200
commitafb82d3729bda2754d0add08cc6c4dce1dc76d59 (patch)
tree9b457709d2e7cabaf927fc12241f9d937bc1d41c /sc/source/ui/docshell
parent855b0af13803c810593ed16ad65eed542d023756 (diff)
implement SfxObjectShell subclasses' LOK interface
Change-Id: Iee2fbf71375631a349992a90c67c1c4c34e6ba3b
Diffstat (limited to 'sc/source/ui/docshell')
-rw-r--r--sc/source/ui/docshell/docsh.cxx10
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: */