diff options
-rw-r--r-- | src/being/playerinfo.h | 4 | ||||
-rw-r--r-- | src/gui/windows/statuswindow.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/being/playerinfo.h b/src/being/playerinfo.h index d16bd6474..cba86bd79 100644 --- a/src/being/playerinfo.h +++ b/src/being/playerinfo.h @@ -52,8 +52,8 @@ struct Stat final }; typedef std::map<int, int> IntMap; -typedef std::map<Attributes, int> AtrIntMap; -typedef std::map<Attributes, Stat> StatMap; +typedef std::map<AttributesT, int> AtrIntMap; +typedef std::map<AttributesT, Stat> StatMap; /** * Backend for core player information. diff --git a/src/gui/windows/statuswindow.h b/src/gui/windows/statuswindow.h index 2ec0a778b..246c42a70 100644 --- a/src/gui/windows/statuswindow.h +++ b/src/gui/windows/statuswindow.h @@ -128,7 +128,7 @@ class StatusWindow final : public Window, Label *mCorrectionPointsLabel; Button *mCopyButton; - typedef std::map<Attributes, AttrDisplay*> Attrs; + typedef std::map<AttributesT, AttrDisplay*> Attrs; Attrs mAttrs; }; |