diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-24 20:51:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-24 20:51:36 +0300 |
commit | ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8 (patch) | |
tree | 47df9210d64faca244f5244088b11cf19da42acf /src/gui/popups/itempopup.h | |
parent | b7bbb09d62b55bed26d432a6a2af9831c6ec9143 (diff) | |
download | mv-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.tar.gz mv-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.tar.bz2 mv-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.tar.xz mv-ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8.zip |
Rename enum ItemType into ItemDbType.
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; |