summaryrefslogtreecommitdiff
path: root/src/guichan
diff options
context:
space:
mode:
Diffstat (limited to 'src/guichan')
-rw-r--r--src/guichan/widgets/button.cpp2
-rw-r--r--src/guichan/widgets/listbox.cpp3
2 files changed, 0 insertions, 5 deletions
diff --git a/src/guichan/widgets/button.cpp b/src/guichan/widgets/button.cpp
index 69affd4b7..585b30f13 100644
--- a/src/guichan/widgets/button.cpp
+++ b/src/guichan/widgets/button.cpp
@@ -132,8 +132,6 @@ namespace gcn
void Button::adjustSize()
{
- setWidth(getFont()->getWidth(mCaption) + 2*mSpacing);
- setHeight(getFont()->getHeight() + 2*mSpacing);
}
bool Button::isPressed() const
diff --git a/src/guichan/widgets/listbox.cpp b/src/guichan/widgets/listbox.cpp
index 66ddf8315..35978f648 100644
--- a/src/guichan/widgets/listbox.cpp
+++ b/src/guichan/widgets/listbox.cpp
@@ -96,7 +96,6 @@ namespace gcn
void ListBox::logic()
{
- adjustSize();
}
int ListBox::getSelected() const
@@ -186,8 +185,6 @@ namespace gcn
void ListBox::adjustSize()
{
- if (mListModel)
- setHeight(getRowHeight() * mListModel->getNumberOfElements());
}
bool ListBox::isWrappingEnabled() const