diff options
Diffstat (limited to 'dw/stackingcontextmgr.hh')
-rw-r--r-- | dw/stackingcontextmgr.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dw/stackingcontextmgr.hh b/dw/stackingcontextmgr.hh index e7254d7f..7f86c22c 100644 --- a/dw/stackingcontextmgr.hh +++ b/dw/stackingcontextmgr.hh @@ -25,9 +25,9 @@ private: Widget *draw (View *view, Rectangle *area, lout::container::untyped::Stack *iterator, - int *index, int startZIndex, int endZIndex); - + int *zIndexOffset, int startZIndex, int endZIndex, int *index); Widget *getWidgetAtPoint (int x, int y, int startZIndex, int endZIndex); + public: StackingContextMgr (Widget *widget); ~StackingContextMgr (); @@ -49,10 +49,10 @@ public: Widget *drawBottom (View *view, Rectangle *area, lout::container::untyped::Stack *iterator, - int *index); + int *zIndexOffset, int *index); Widget *drawTop (View *view, Rectangle *area, lout::container::untyped::Stack *iterator, - int *index); + int *zIndexOffset, int *index); Widget *getTopWidgetAtPoint (int x, int y); Widget *getBottomWidgetAtPoint (int x, int y); |