diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-21 00:45:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-21 00:45:24 +0300 |
commit | cfa5391c1be51ef49380e398a72c813255d6316e (patch) | |
tree | 32e9f77ae80e72a6388923dddb90721e661394e5 /src/gui/widgets | |
parent | 31acb66791e27b6cfa846302156ad2e7a88f5f04 (diff) | |
download | plus-cfa5391c1be51ef49380e398a72c813255d6316e.tar.gz plus-cfa5391c1be51ef49380e398a72c813255d6316e.tar.bz2 plus-cfa5391c1be51ef49380e398a72c813255d6316e.tar.xz plus-cfa5391c1be51ef49380e398a72c813255d6316e.zip |
first part of checks and style fixes.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/shoplistbox.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp index 7dcd38a88..45b385255 100644 --- a/src/gui/widgets/shoplistbox.cpp +++ b/src/gui/widgets/shoplistbox.cpp @@ -135,7 +135,8 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) if (needDraw) { graphics->setColor(*backgroundColor); - graphics->fillRectangle(gcn::Rectangle(0, y, getWidth(), mRowHeight)); + graphics->fillRectangle(gcn::Rectangle( + 0, y, getWidth(), mRowHeight)); } if (mShopItems) |