diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-03-16 15:50:00 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-03-16 15:50:00 +0000 |
commit | 32badd4b6f843cb74fdc3238fe92119518c8c0ab (patch) | |
tree | ade2ace7f5ef62ae9fd14c6409d9c2df43a2348b /src/gui/itemcontainer.cpp | |
parent | 65ccfccfc1e35a2e65638aea61c46e4e51bd874e (diff) | |
download | mana-32badd4b6f843cb74fdc3238fe92119518c8c0ab.tar.gz mana-32badd4b6f843cb74fdc3238fe92119518c8c0ab.tar.bz2 mana-32badd4b6f843cb74fdc3238fe92119518c8c0ab.tar.xz mana-32badd4b6f843cb74fdc3238fe92119518c8c0ab.zip |
A bunch of cosmetic changes.
Diffstat (limited to 'src/gui/itemcontainer.cpp')
-rw-r--r-- | src/gui/itemcontainer.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index 874c0b63..e0730ced 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -76,8 +76,7 @@ void ItemContainer::draw(gcn::Graphics* graphics) { int gridWidth = mItemset->get(0)->getWidth() + 4; int gridHeight = mItemset->get(0)->getHeight() + 10; - int w = getWidth(); - int columns = w / gridWidth; + int columns = getWidth() / gridWidth; // Have at least 1 column if (columns < 1) @@ -170,8 +169,7 @@ void ItemContainer::mousePress(int mx, int my, int button) { int gridWidth = mItemset->get(0)->getWidth() + 4; int gridHeight = mItemset->get(0)->getHeight() + 10; - int w = getWidth(); - int columns = w / gridWidth; + int columns = getWidth() / gridWidth; if (button == gcn::MouseInput::LEFT || gcn::MouseInput::RIGHT) { |