summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-02-19 18:36:17 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-23 10:10:28 +0100
commitb3fd1d5e5670c79e61c3ba19a04aa0cf0d429212 (patch)
tree417e078392fd7236dfc8b09193598f793c7ca1f1 /include
parent40e3569a08d89fc6cf91cfc3a88d1049f25533c9 (diff)
Use SdrModel::isTiledRendering()
It turns out that in case the is-tiled-rendering flag is part of the sdr model, then that's enough for all the places where so far used a flag on the output device for this purpose, so change the two users of that method to use SdrModel::isTiledRendering(), and clean up the now unused one. Change-Id: Ife6d3d7e093c04b707497d9588942b38bcd8742d
Diffstat (limited to 'include')
-rw-r--r--include/vcl/outdev.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 80178b3c191e..ec1063b6b717 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -275,8 +275,6 @@ private:
ImplOutDevData* mpOutDevData;
std::vector< VCLXGraphics* >* mpUnoGraphicsList;
vcl::PDFWriterImpl* mpPDFWriter;
- /// Set if we are doing the tiled rendering.
- bool mbTiledRendering;
vcl::ExtOutDevData* mpExtOutDevData;
// TEMP TEMP TEMP
@@ -478,11 +476,6 @@ public:
void SetExtOutDevData( vcl::ExtOutDevData* pExtOutDevData ) { mpExtOutDevData = pExtOutDevData; }
vcl::ExtOutDevData* GetExtOutDevData() const { return mpExtOutDevData; }
- /// Set if we are doing tiled rendering.
- void setTiledRendering(bool bTiledRendering);
- /// Are we doing tiled rendering?
- bool isTiledRendering() const;
-
///@}