diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-05 20:20:25 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-05 20:20:25 +0000 |
commit | d8539e4ccac014c306329cda2c8bed036a80af39 (patch) | |
tree | 2ba911e66c31102173f4df9cbac19049a7f45a4b /src/gui | |
parent | c65678cd7016d56aa3f8360b7e8d36e275b8c90e (diff) | |
download | mana-d8539e4ccac014c306329cda2c8bed036a80af39.tar.gz mana-d8539e4ccac014c306329cda2c8bed036a80af39.tar.bz2 mana-d8539e4ccac014c306329cda2c8bed036a80af39.tar.xz mana-d8539e4ccac014c306329cda2c8bed036a80af39.zip |
Fix drawing of very high fringe tiles by keeping track of the maximum tile
height.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/itemshortcutcontainer.cpp | 1 | ||||
-rw-r--r-- | src/gui/itemshortcutcontainer.h | 4 | ||||
-rw-r--r-- | src/gui/itemshortcutwindow.cpp | 1 | ||||
-rw-r--r-- | src/gui/itemshortcutwindow.h | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/itemshortcutcontainer.cpp b/src/gui/itemshortcutcontainer.cpp index 1943ef93..0f7d1332 100644 --- a/src/gui/itemshortcutcontainer.cpp +++ b/src/gui/itemshortcutcontainer.cpp @@ -18,6 +18,7 @@ * along with The Mana World; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + * $Id$ */ #include "itemshortcutcontainer.h" diff --git a/src/gui/itemshortcutcontainer.h b/src/gui/itemshortcutcontainer.h index 4b154cbb..c69525e0 100644 --- a/src/gui/itemshortcutcontainer.h +++ b/src/gui/itemshortcutcontainer.h @@ -18,6 +18,7 @@ * along with The Mana World; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + * $Id$ */ #ifndef _TMW_ITEMSHORTCUTCONTAINER_H__ @@ -26,8 +27,6 @@ #include <guichan/mouselistener.hpp> #include <guichan/widget.hpp> -#include <list> - class Image; class Item; @@ -109,7 +108,6 @@ class ItemShortcutContainer : public gcn::Widget, public gcn::MouseListener int mGridWidth, mGridHeight; bool mItemClicked; Item *mItemMoved; - }; #endif diff --git a/src/gui/itemshortcutwindow.cpp b/src/gui/itemshortcutwindow.cpp index efac9353..51f9f91e 100644 --- a/src/gui/itemshortcutwindow.cpp +++ b/src/gui/itemshortcutwindow.cpp @@ -18,6 +18,7 @@ * along with The Mana World; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + * $Id$ */ #include "itemshortcutwindow.h" diff --git a/src/gui/itemshortcutwindow.h b/src/gui/itemshortcutwindow.h index 83bc348d..1dde8686 100644 --- a/src/gui/itemshortcutwindow.h +++ b/src/gui/itemshortcutwindow.h @@ -18,6 +18,7 @@ * along with The Mana World; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + * $Id$ */ #ifndef _TMW_ITEMSHORTCUTWINDOW_H |