diff options
Diffstat (limited to 'src/gui/popups/itempopup.h')
-rw-r--r-- | src/gui/popups/itempopup.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/popups/itempopup.h b/src/gui/popups/itempopup.h index fc0320614..f862d2754 100644 --- a/src/gui/popups/itempopup.h +++ b/src/gui/popups/itempopup.h @@ -24,7 +24,7 @@ #ifndef GUI_POPUPS_ITEMPOPUP_H #define GUI_POPUPS_ITEMPOPUP_H -#include "enums/resources/itemtype.h" +#include "enums/resources/itemdbtype.h" #include "enums/simpletypes/itemcolor.h" @@ -82,14 +82,14 @@ class ItemPopup final : public Popup TextBox *mItemEffect A_NONNULLPOINTER; TextBox *mItemWeight A_NONNULLPOINTER; TextBox *mItemCards A_NONNULLPOINTER; - ItemTypeT mItemType; + ItemDbTypeT mItemType; Icon *mIcon A_NONNULLPOINTER; std::string mLastName; int mLastId; ItemColor mLastColor; void setLabelColor(Label *label, - const ItemTypeT type) const A_NONNULL(2); + const ItemDbTypeT type) const A_NONNULL(2); }; extern ItemPopup *itemPopup; |