diff options
Diffstat (limited to 'src/gui/widgets/spellshortcutcontainer.cpp')
-rw-r--r-- | src/gui/widgets/spellshortcutcontainer.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gui/widgets/spellshortcutcontainer.cpp b/src/gui/widgets/spellshortcutcontainer.cpp index af9457078..ee43a5d3f 100644 --- a/src/gui/widgets/spellshortcutcontainer.cpp +++ b/src/gui/widgets/spellshortcutcontainer.cpp @@ -40,6 +40,8 @@ #include "utils/gettext.h" +#include <guichan/font.hpp> + #include "debug.h" SpellShortcutContainer::SpellShortcutContainer(const unsigned number) : @@ -102,8 +104,8 @@ void SpellShortcutContainer::draw(gcn::Graphics *graphics) } Graphics *const g = static_cast<Graphics *const>(graphics); - - graphics->setFont(getFont()); + gcn::Font *const font = getFont(); + graphics->setFont(font); const int selectedId = spellShortcut->getSelectedItem(); g->setColor(mForegroundColor); @@ -139,8 +141,8 @@ void SpellShortcutContainer::draw(gcn::Graphics *graphics) } } - g->drawText(spell->getSymbol(), itemX + 2, - itemY + mBoxHeight / 2, gcn::Graphics::LEFT); + font->drawString(g, spell->getSymbol(), + itemX + 2, itemY + mBoxHeight / 2); } } |