aboutsummaryrefslogtreecommitdiff
path: root/test/dw_simple_container.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/dw_simple_container.cc')
-rw-r--r--test/dw_simple_container.cc4
1 files changed, 2 insertions, 2 deletions
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;
}