summaryrefslogtreecommitdiff
path: root/src/gui/vbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/vbox.cpp')
-rw-r--r--src/gui/vbox.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/gui/vbox.cpp b/src/gui/vbox.cpp
index d79fbba2..eb838ead 100644
--- a/src/gui/vbox.cpp
+++ b/src/gui/vbox.cpp
@@ -25,17 +25,21 @@
void VBox::draw(gcn::Graphics *graphics)
{
- int widgetCount = mWidgets.size();
- int childWidth = getWidth();
- if (widgetCount == 0)
- return;
- int childHeight = getHeight() / widgetCount;
+ if (mWidgets.size() == 0)
+ {
+ return;
+ }
+ int childWidth = getWidth();
+ int childHeight = getHeight() / mWidgets.size();
int i = 0;
- for (WidgetIterator w = mWidgets.begin(); w != mWidgets.end(); w++) {
- (*w)->setPosition(0, childHeight * i - padding);
+
+ for (WidgetIterator w = mWidgets.begin(); w != mWidgets.end(); w++)
+ {
+ (*w)->setPosition(0, childHeight * i - padding);
(*w)->setSize(childWidth, childHeight);
i++;
}
+
gcn::Container::draw(graphics);
}