diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemLilypad.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Items/ItemLilypad.h b/src/Items/ItemLilypad.h index 7f3b85a70..985da3ed5 100644 --- a/src/Items/ItemLilypad.h +++ b/src/Items/ItemLilypad.h @@ -9,14 +9,15 @@ -class cItemLilypadHandler : +class cItemLilypadHandler: public cItemHandler { - typedef cItemHandler super; + using Super = cItemHandler; public: + cItemLilypadHandler(int a_ItemType): - super(a_ItemType) + Super(a_ItemType) { } |