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/ooffloatsmgr.hh | |
parent | 80898e60379898a69a09fa2bbfec02ae95c28ffd (diff) |
Changed signature of Widget::draw and friends.
Diffstat (limited to 'dw/ooffloatsmgr.hh')
-rw-r--r-- | dw/ooffloatsmgr.hh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/dw/ooffloatsmgr.hh b/dw/ooffloatsmgr.hh index f7f994d7..70c576b4 100644 --- a/dw/ooffloatsmgr.hh +++ b/dw/ooffloatsmgr.hh @@ -284,10 +284,11 @@ private: bool doFloatsExceedCB (Side side); bool haveExtremesChanged (Side side); - core::Widget *drawFloats (SortedFloatsVector *list, core::View *view, - core::Rectangle *area, - core::StackingIteratorStack *iteratorStack, - int *index, int startIndex); + void drawFloats (SortedFloatsVector *list, core::View *view, + core::Rectangle *area, + core::StackingIteratorStack *iteratorStack, + core::Widget **interruptedWidget, int *index, + int startIndex); core::Widget *getFloatWidgetAtPoint (SortedFloatsVector *list, int x, int y); bool collidesV (Float *vloat, Float *other, SFVType type, int *yReal); @@ -342,8 +343,9 @@ public: core::Allocation *allocation); void sizeAllocateEnd (OOFAwareWidget *caller); void containerSizeChangedForChildren (); - core::Widget *draw (core::View *view, core::Rectangle *area, - core::StackingIteratorStack *iteratorStack, int *index); + void draw (core::View *view, core::Rectangle *area, + core::StackingIteratorStack *iteratorStack, + core::Widget **interruptedWidget, int *index); void markSizeChange (int ref); void markExtremesChange (int ref); |