diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-09 08:37:09 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-09 08:49:59 +0000 |
commit | c3c3e5b0554ca3f49649c96cf0b0b1b770713532 (patch) | |
tree | ca72b4772363484cc3664c26b70698fc396c8e8b /include/svtools/grfmgr.hxx | |
parent | d4b0ab2214425545aac5d98c49dc320ee39d6dc2 (diff) |
loplugin:constantparam in svtools
Change-Id: I04caae0c9ae621c55e16d3bdc014a4729617feb3
Reviewed-on: https://gerrit.libreoffice.org/28757
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svtools/grfmgr.hxx')
-rw-r--r-- | include/svtools/grfmgr.hxx | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/include/svtools/grfmgr.hxx b/include/svtools/grfmgr.hxx index f30b0df80be5..82e6081f3ad1 100644 --- a/include/svtools/grfmgr.hxx +++ b/include/svtools/grfmgr.hxx @@ -235,9 +235,6 @@ private: @param rVDev Virtual device to render everything into - @param nExponent - Number of repetitions per subdivision step, _must_ be greater than 1 - @param nNumTilesX Number of original tiles to generate in x direction @@ -260,7 +257,6 @@ private: */ bool SVT_DLLPRIVATE ImplRenderTempTile( VirtualDevice& rVDev, - int nExponent, int nNumTilesX, int nNumTilesY, const Size& rTileSizePixel, @@ -328,10 +324,10 @@ protected: void SetSwapState(); public: - GraphicObject( const GraphicManager* pMgr = nullptr ); - GraphicObject( const Graphic& rGraphic, const GraphicManager* pMgr = nullptr ); + GraphicObject(); + GraphicObject( const Graphic& rGraphic ); GraphicObject( const GraphicObject& rCacheObj, const GraphicManager* pMgr = nullptr ); - explicit GraphicObject( const OString& rUniqueID, const GraphicManager* pMgr = nullptr ); + explicit GraphicObject( const OString& rUniqueID ); virtual ~GraphicObject(); GraphicObject& operator=( const GraphicObject& rCacheObj ); @@ -448,9 +444,6 @@ public: virtually start at this position. Concretely, only that many tiles are drawn to completely fill the given output area. - @param pAttr - Optional GraphicAttr - @param nFlags Optional rendering flags @@ -467,7 +460,6 @@ public: const Rectangle& rArea, const Size& rSize, const Size& rOffset, - const GraphicAttr* pAttr = nullptr, GraphicManagerDrawFlags nFlags = GraphicManagerDrawFlags::STANDARD, int nTileCacheSize1D=128 ); |