summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabbedarea.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/tabbedarea.cpp')
-rw-r--r--src/gui/widgets/tabbedarea.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp
index 0321e5044..ded2986d3 100644
--- a/src/gui/widgets/tabbedarea.cpp
+++ b/src/gui/widgets/tabbedarea.cpp
@@ -129,10 +129,15 @@ Tab *TabbedArea::getTab(const std::string &name) const
void TabbedArea::draw(gcn::Graphics *graphics)
{
+ BLOCK_START("TabbedArea::draw")
if (mTabs.empty())
+ {
+ BLOCK_END("TabbedArea::draw")
return;
+ }
drawChildren(graphics);
+ BLOCK_END("TabbedArea::draw")
}
gcn::Widget *TabbedArea::getWidget(const std::string &name) const
@@ -274,7 +279,9 @@ void TabbedArea::removeTab(Tab *tab)
void TabbedArea::logic()
{
+ BLOCK_START("TabbedArea::logic")
logicChildren();
+ BLOCK_END("TabbedArea::logic")
}
void TabbedArea::mousePressed(gcn::MouseEvent &mouseEvent)