diff options
author | Sebastian Geerken <devnull@localhost> | 2014-10-23 22:36:11 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-10-23 22:36:11 +0200 |
commit | 607814bdead6d72fb6825a5502e625a216114a1c (patch) | |
tree | 0e3cfd012c1d9d3000a77e8ccaaecdd754938705 /dw/outofflowmgr.hh | |
parent | 80898e60379898a69a09fa2bbfec02ae95c28ffd (diff) |
Changed signature of Widget::draw and friends.
Diffstat (limited to 'dw/outofflowmgr.hh')
-rw-r--r-- | dw/outofflowmgr.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/outofflowmgr.hh b/dw/outofflowmgr.hh index 15a94081..b7db0fe3 100644 --- a/dw/outofflowmgr.hh +++ b/dw/outofflowmgr.hh @@ -25,9 +25,9 @@ public: core::Allocation *allocation) = 0; virtual void sizeAllocateEnd (OOFAwareWidget *caller) = 0; virtual void containerSizeChangedForChildren () = 0; - virtual core::Widget *draw (core::View *view, core::Rectangle *area, - core::StackingIteratorStack *iteratorStack, - int *index) = 0; + virtual void draw (core::View *view, core::Rectangle *area, + core::StackingIteratorStack *iteratorStack, + core::Widget **interruptedWidget, int *index) = 0; virtual void markSizeChange (int ref) = 0; virtual void markExtremesChange (int ref) = 0; |