summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-12-17 09:15:44 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-12-17 09:16:28 +0100
commit5b44a9733a79decc2eebfc2360fdd837349b5759 (patch)
tree735a76c02beaa68180e22917e720e12a339b3d27 /sw
parent550d95ae6e67a3a0fdbee27ce92712d203383c3e (diff)
sw, sd, sc: clean up no longer necessary isTiledRendering() member functions
Change-Id: I508a29fd261865771d780b1c241841d9abfeb6ed
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/docsh.hxx1
-rw-r--r--sw/source/uibase/app/docsh.cxx6
2 files changed, 0 insertions, 7 deletions
diff --git a/sw/inc/docsh.hxx b/sw/inc/docsh.hxx
index f7e7ec28a028..84774c17d327 100644
--- a/sw/inc/docsh.hxx
+++ b/sw/inc/docsh.hxx
@@ -310,7 +310,6 @@ public:
virtual bool GetProtectionHash( /*out*/ css::uno::Sequence< sal_Int8 > &rPasswordHash ) override;
virtual void libreOfficeKitCallback(int nType, const char* pPayload) const override;
- bool isTiledRendering() const;
};
/** Find the right DocShell and create a new one:
diff --git a/sw/source/uibase/app/docsh.cxx b/sw/source/uibase/app/docsh.cxx
index 72533e5f6f1b..48f8b0500c85 100644
--- a/sw/source/uibase/app/docsh.cxx
+++ b/sw/source/uibase/app/docsh.cxx
@@ -1346,10 +1346,4 @@ void SwDocShell::libreOfficeKitCallback(int nType, const char* pPayload) const
pDrawModel->libreOfficeKitCallback(nType, pPayload);
}
-bool SwDocShell::isTiledRendering() const
-{
- SwDrawModel* pDrawModel = m_pDoc->getIDocumentDrawModelAccess().GetDrawModel();
- return pDrawModel->isTiledRendering();
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */