From d39956a7b0a38ebeda147d52aa734e992c425d9f Mon Sep 17 00:00:00 2001 From: Sebastian Geerken Date: Thu, 23 Oct 2014 12:29:38 +0200 Subject: More work on drawing: interruptions work now halfway. --- test/dw_simple_container.cc | 4 ++-- test/dw_simple_container.hh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/dw_simple_container.cc b/test/dw_simple_container.cc index cdc7df5f..9507e233 100644 --- a/test/dw_simple_container.cc +++ b/test/dw_simple_container.cc @@ -206,14 +206,14 @@ namespace dw { } core::Widget *SimpleContainer::draw (View *view, Rectangle *area, - lout::container::untyped::Stack *iterator) + StackingIteratorStack *iteratorStack) { Widget *retWidget = NULL; drawWidgetBox (view, area, false); Rectangle childArea; if (child && child->intersects (area, &childArea)) - retWidget = child->drawTotal (view, &childArea, iterator); + retWidget = child->drawTotal (view, &childArea, iteratorStack); return retWidget; } diff --git a/test/dw_simple_container.hh b/test/dw_simple_container.hh index 0aa19ad6..251df8fb 100644 --- a/test/dw_simple_container.hh +++ b/test/dw_simple_container.hh @@ -45,7 +45,7 @@ public: ~SimpleContainer (); Widget *draw (core::View *view, core::Rectangle *area, - lout::container::untyped::Stack *iterator); + core::StackingIteratorStack *iteratorStack); core::Iterator *iterator (core::Content::Type mask, bool atEnd); void removeChild (Widget *child); -- cgit v1.2.3