summaryrefslogtreecommitdiff
path: root/src/guichan/widgets/container.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/guichan/widgets/container.cpp')
-rw-r--r--src/guichan/widgets/container.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/guichan/widgets/container.cpp b/src/guichan/widgets/container.cpp
index ec61338c8..64f1ee8cb 100644
--- a/src/guichan/widgets/container.cpp
+++ b/src/guichan/widgets/container.cpp
@@ -69,6 +69,7 @@ namespace gcn
void Container::draw(Graphics* graphics)
{
+ BLOCK_START("Container::draw")
if (isOpaque())
{
graphics->setColor(getBaseColor());
@@ -76,6 +77,7 @@ namespace gcn
}
drawChildren(graphics);
+ BLOCK_END("Container::draw")
}
void Container::setOpaque(bool opaque)