diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-09 14:51:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-10 08:33:25 +0200 |
commit | ed0f690b93d478380366d96655a3efe5848c6737 (patch) | |
tree | d1baff1e66d12db29e7a1a4e145eb55ca370c67a /include | |
parent | 03c708bf085f91480c014d7fa31e7a317b2c7b8f (diff) |
make tools::Rectangle::AdjustRight respect empty state
and make non-inline so it is easy to disable this for debugging, if need
be
Change-Id: I69c717be91712b73e9d3b8f9c83d26305c052bd5
Reviewed-on: https://gerrit.libreoffice.org/75300
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/gen.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/gen.hxx b/include/tools/gen.hxx index 897db7a25f79..e29726a5e305 100644 --- a/include/tools/gen.hxx +++ b/include/tools/gen.hxx @@ -409,7 +409,7 @@ public: inline void Move( long nHorzMoveDelta, long nVertMoveDelta ); void Move( Size const & s ) { Move(s.Width(), s.Height()); } long AdjustLeft( long nHorzMoveDelta ) { nLeft += nHorzMoveDelta; return nLeft; } - long AdjustRight( long nHorzMoveDelta ) { nRight += nHorzMoveDelta; return nRight; } + long AdjustRight( long nHorzMoveDelta ); long AdjustTop( long nVertMoveDelta ) { nTop += nVertMoveDelta; return nTop; } long AdjustBottom( long nVertMoveDelta ) { nBottom += nVertMoveDelta; return nBottom; } inline void SetPos( const Point& rPoint ); |