diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-08-09 16:11:36 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-08-09 16:48:40 -0600 |
commit | 4f5f84e1687e75fe7e80f0f31316b6efe2feae49 (patch) | |
tree | 25c46bef77957aee4370186fd4fc8defea40f9fd /src/gui/itempopup.cpp | |
parent | d51e707dff682e86c2d390b9e24981f511fa03c9 (diff) | |
download | mana-4f5f84e1687e75fe7e80f0f31316b6efe2feae49.tar.gz mana-4f5f84e1687e75fe7e80f0f31316b6efe2feae49.tar.bz2 mana-4f5f84e1687e75fe7e80f0f31316b6efe2feae49.tar.xz mana-4f5f84e1687e75fe7e80f0f31316b6efe2feae49.zip |
Replace remaining gcn::Label instances with Label instances
Reviewed-by: Chuck Miller
Diffstat (limited to 'src/gui/itempopup.cpp')
-rw-r--r-- | src/gui/itempopup.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index ce4d1126..c926670a 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -28,6 +28,7 @@ #include "gui/gui.h" #include "gui/widgets/icon.h" +#include "gui/widgets/label.h" #include "gui/widgets/textbox.h" #include "utils/gettext.h" @@ -46,7 +47,7 @@ ItemPopup::ItemPopup(): mIcon(0) { // Item Name - mItemName = new gcn::Label; + mItemName = new Label; mItemName->setFont(boldFont); mItemName->setPosition(getPadding(), getPadding()); |