summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-12-04 08:37:09 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-12-05 07:51:19 +0100
commitdf55a6ca81848a5a095f08ae5265186d38176d40 (patch)
treef95e72c0c885efe9f73ab38d0d82f1bba757a4bf /include
parent5e93e406cbada31882c33fe1f420af29039027be (diff)
remove unused GraphicManagerDrawFlags enum
Change-Id: I12ef5e6257db337c4432b251bc92107a2c2ea88b Reviewed-on: https://gerrit.libreoffice.org/64557 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/GraphicObject.hxx17
1 files changed, 1 insertions, 16 deletions
diff --git a/include/vcl/GraphicObject.hxx b/include/vcl/GraphicObject.hxx
index 854cc14ec6fd..9ffbd9a73ba2 100644
--- a/include/vcl/GraphicObject.hxx
+++ b/include/vcl/GraphicObject.hxx
@@ -27,17 +27,6 @@
namespace com { namespace sun { namespace star { namespace graphic { class XGraphic; } } } }
namespace o3tl { template <typename T> struct typed_flags; }
-enum class GraphicManagerDrawFlags
-{
- CACHED = 0x01,
- SMOOTHSCALE = 0x02,
- STANDARD = CACHED | SMOOTHSCALE,
-};
-namespace o3tl
-{
- template<> struct typed_flags<GraphicManagerDrawFlags> : is_typed_flags<GraphicManagerDrawFlags, 0x02> {};
-}
-
// Adjustment defines
enum class GraphicAdjustmentFlags
{
@@ -214,8 +203,7 @@ private:
int nNumTilesX,
int nNumTilesY,
const Size& rTileSizePixel,
- const GraphicAttr* pAttr,
- GraphicManagerDrawFlags nFlags
+ const GraphicAttr* pAttr
);
/// internally called by ImplRenderTempTile()
@@ -229,7 +217,6 @@ private:
int nRemainderTilesY,
const Size& rTileSizePixel,
const GraphicAttr* pAttr,
- GraphicManagerDrawFlags nFlags,
ImplTileInfo& rTileInfo
);
@@ -239,7 +226,6 @@ private:
const Size& rSizePixel,
const Size& rOffset,
const GraphicAttr* pAttr,
- GraphicManagerDrawFlags nFlags,
int nTileCacheSize1D
);
@@ -365,7 +351,6 @@ public:
const tools::Rectangle& rArea,
const Size& rSize,
const Size& rOffset,
- GraphicManagerDrawFlags nFlags = GraphicManagerDrawFlags::STANDARD,
int nTileCacheSize1D=128
);