diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-28 08:11:44 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-29 09:03:56 +0900 |
commit | 2d7ff9c23b4ed192dc800af3dd5b79dc183ba10e (patch) | |
tree | 5119e23d3a520a9b52415dd5afe667dc9caaf667 /vcl/source | |
parent | 56e2f3e338f3f0da6f38da805d24438b5bcc7b06 (diff) |
change Paint input parameter to ref
Change-Id: I4bf97d46736ce8186c3699c9a861e44103ab0d4b
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/window.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 4c97c4233e62..71b93e030fa9 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -3927,7 +3927,7 @@ Any Window::GetSystemDataAny() const return aRet; } -void Window::Paint(vcl::RenderContext* /*pRenderContext*/, const Rectangle& rRect) +void Window::Paint(vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect) { Paint(rRect); } |