summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-02-03 17:27:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-02-04 21:49:22 +0100
commit955fd7d8dc9da29717371c8fcb25d9954ff975bd (patch)
treeb33f36cb8e8161ee490c94d38f7067d7e3c71347 /include
parent948207edfbb6a8bcce2573ec758bacf818bbd2c7 (diff)
split rect arg into dest pos and source rect
Change-Id: I622979fa54e54f1c6e00b5a16546fdbc12957422 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110383 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/weld.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 70a340c85b30..18e0cd6abdbc 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -315,7 +315,7 @@ public:
virtual void connect_get_property_tree(const Link<tools::JsonWriter&, void>& rLink) = 0;
// render the widget to an output device
- virtual void draw(OutputDevice& rOutput, const tools::Rectangle& rRect) = 0;
+ virtual void draw(OutputDevice& rOutput, const Point& rPos, const Size& rSizePixel) = 0;
virtual ~Widget() {}
};