diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-18 09:02:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-18 09:57:26 +0200 |
commit | 72f36adb93d24a3da8868dad128ab2eca0124fda (patch) | |
tree | 06baca9f873aa59e16c5f3612f5a464c2e0eba46 /include/vcl/dockwin.hxx | |
parent | bff8cd3d52223002263dcb8c09758c4fc753b6e3 (diff) |
loplugin:constparams in vcl
Change-Id: I36afe2107e07ffb9b73c0b76be600e3e999a0fd4
Reviewed-on: https://gerrit.libreoffice.org/40116
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/dockwin.hxx')
-rw-r--r-- | include/vcl/dockwin.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/dockwin.hxx b/include/vcl/dockwin.hxx index a3e60b7f433f..98cded028533 100644 --- a/include/vcl/dockwin.hxx +++ b/include/vcl/dockwin.hxx @@ -119,7 +119,7 @@ public: bool ImplStartDocking( const Point& rPos ); // those methods actually call the corresponding handlers - void StartDocking( const Point& rPos, tools::Rectangle& rRect ); + void StartDocking( const Point& rPos, tools::Rectangle const & rRect ); bool Docking( const Point& rPos, tools::Rectangle& rRect ); void EndDocking( const tools::Rectangle& rRect, bool bFloatMode ); bool PrepareToggleFloatingMode(); @@ -191,7 +191,7 @@ public: // required because those methods are not virtual in Window (!!!) and must // be availbale from the toolkit - void SetPosSizePixel( vcl::Window *pWin, long nX, long nY, + void SetPosSizePixel( vcl::Window const *pWin, long nX, long nY, long nWidth, long nHeight, PosSizeFlags nFlags ); tools::Rectangle GetPosSizePixel( const vcl::Window *pWin ); |