diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-31 16:37:55 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-01 09:05:46 +0000 |
commit | b8ee524330d924456931ad602eb4701b55a2aa85 (patch) | |
tree | d5bcc6cfeed82d8aecf75efb256916eed2271304 /include/svx/svdglev.hxx | |
parent | 26c149617c54e29902a77d2f95ca7c64af13b52f (diff) |
loplugin:countusersofdefaultparams
Change-Id: Ifc9cdbda77048791203e89350c2efa9a6c34c4a5
Reviewed-on: https://gerrit.libreoffice.org/28555
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svx/svdglev.hxx')
-rw-r--r-- | include/svx/svdglev.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdglev.hxx b/include/svx/svdglev.hxx index e9489e0eb981..6559ddb4b4fd 100644 --- a/include/svx/svdglev.hxx +++ b/include/svx/svdglev.hxx @@ -35,8 +35,8 @@ class SVX_DLLPUBLIC SdrGlueEditView: public SdrPolyEditView void ImpCopyMarkedGluePoints(); typedef void (*PGlueDoFunc)(SdrGluePoint&, const SdrObject* pObj, const void*, const void*, const void*, const void*, const void*); typedef void (*PGlueTrFunc)(Point&, const void*, const void*, const void*, const void*, const void*); - void ImpDoMarkedGluePoints(PGlueDoFunc pDoFunc, bool bConst, const void* p1=nullptr, const void* p2=nullptr, const void* p3=nullptr, const void* p4=nullptr, const void* p5=nullptr); - void ImpTransformMarkedGluePoints(PGlueTrFunc pTrFunc, const void* p1=nullptr, const void* p2=nullptr, const void* p3=nullptr, const void* p4=nullptr, const void* p5=nullptr); + void ImpDoMarkedGluePoints(PGlueDoFunc pDoFunc, bool bConst, const void* p1, const void* p2=nullptr, const void* p3=nullptr, const void* p4=nullptr, const void* p5=nullptr); + void ImpTransformMarkedGluePoints(PGlueTrFunc pTrFunc, const void* p1, const void* p2=nullptr, const void* p3=nullptr, const void* p4=nullptr, const void* p5=nullptr); protected: // #i71538# make constructors of SdrView sub-components protected to avoid incomplete incarnations which may get casted to SdrView @@ -73,8 +73,8 @@ public: void DeleteMarkedGluePoints(); void MoveMarkedGluePoints (const Size& rSiz, bool bCopy=false); - void ResizeMarkedGluePoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact, bool bCopy=false); - void RotateMarkedGluePoints(const Point& rRef, long nAngle, bool bCopy=false); + void ResizeMarkedGluePoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact, bool bCopy); + void RotateMarkedGluePoints(const Point& rRef, long nAngle, bool bCopy); }; #endif // INCLUDED_SVX_SVDGLEV_HXX |