diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-12-17 09:15:44 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-12-17 09:16:28 +0100 |
commit | 5b44a9733a79decc2eebfc2360fdd837349b5759 (patch) | |
tree | 735a76c02beaa68180e22917e720e12a339b3d27 /sd | |
parent | 550d95ae6e67a3a0fdbee27ce92712d203383c3e (diff) |
sw, sd, sc: clean up no longer necessary isTiledRendering() member functions
Change-Id: I508a29fd261865771d780b1c241841d9abfeb6ed
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/docshell/docshell.cxx | 9 | ||||
-rw-r--r-- | sd/source/ui/inc/DrawDocShell.hxx | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/sd/source/ui/docshell/docshell.cxx b/sd/source/ui/docshell/docshell.cxx index c30436e85394..f47b0a7ef895 100644 --- a/sd/source/ui/docshell/docshell.cxx +++ b/sd/source/ui/docshell/docshell.cxx @@ -470,15 +470,6 @@ void DrawDocShell::libreOfficeKitCallback(int nType, const char* pPayload) const mpDoc->libreOfficeKitCallback(nType, pPayload); } -bool DrawDocShell::isTiledRendering() const -{ - if (!mpDoc) - return false; - return mpDoc->isTiledRendering(); -} - - - } // end of namespace sd /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sd/source/ui/inc/DrawDocShell.hxx b/sd/source/ui/inc/DrawDocShell.hxx index 04a6564cbe41..b43f84b9f877 100644 --- a/sd/source/ui/inc/DrawDocShell.hxx +++ b/sd/source/ui/inc/DrawDocShell.hxx @@ -204,7 +204,6 @@ public: void ClearUndoBuffer(); virtual void libreOfficeKitCallback(int nType, const char* pPayload) const override; - bool isTiledRendering() const; protected: |