diff options
Diffstat (limited to 'src/Items/ItemFishingRod.h')
-rw-r--r-- | src/Items/ItemFishingRod.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Items/ItemFishingRod.h b/src/Items/ItemFishingRod.h index 8c2be3ad3..48568ed69 100644 --- a/src/Items/ItemFishingRod.h +++ b/src/Items/ItemFishingRod.h @@ -49,14 +49,15 @@ protected: -class cItemFishingRodHandler : +class cItemFishingRodHandler: public cItemHandler { - typedef cItemHandler super; + using Super = cItemHandler; public: - cItemFishingRodHandler(int a_ItemType) : - super(a_ItemType) + + cItemFishingRodHandler(int a_ItemType): + Super(a_ItemType) { } |