diff options
Diffstat (limited to 'src/listeners/playerlistener.h')
-rw-r--r-- | src/listeners/playerlistener.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/listeners/playerlistener.h b/src/listeners/playerlistener.h index 52527fafc..fd503da95 100644 --- a/src/listeners/playerlistener.h +++ b/src/listeners/playerlistener.h @@ -44,13 +44,13 @@ class PlayerListener final : public ActionListener void setDialog(TextDialog *const dialog) { mDialog = dialog; } - void setType(const ActorType::Type type) + void setType(const ActorTypeT type) { mType = type; } private: std::string mNick; TextDialog *mDialog; - ActorType::Type mType; + ActorTypeT mType; }; #endif // LISTENERS_PLAYERLISTENER_H |