summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-04-27 15:25:06 +0900
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-04-29 09:03:56 +0900
commit56e2f3e338f3f0da6f38da805d24438b5bcc7b06 (patch)
tree708f2107553a1e16600e2b028e36cb6854746649 /vcl
parentd3ba96e37ec4681b9b7cb1ffac5e34060e47a4ee (diff)
Add paint with render context to window -> impl. calls old paint
Change-Id: Ic4823f9f74c75e87de92d07a9a1310a7eed93074
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/window.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index f991b98b6fe5..4c97c4233e62 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -3927,6 +3927,11 @@ Any Window::GetSystemDataAny() const
return aRet;
}
+void Window::Paint(vcl::RenderContext* /*pRenderContext*/, const Rectangle& rRect)
+{
+ Paint(rRect);
+}
+
} /* namespace vcl */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */