From 9ee47e59995f858ec531b3ee467f131594e4ba1f Mon Sep 17 00:00:00 2001 From: Mattes D Date: Mon, 13 Apr 2020 18:38:06 +0200 Subject: Using Super. --- src/Items/ItemBoat.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/Items/ItemBoat.h') diff --git a/src/Items/ItemBoat.h b/src/Items/ItemBoat.h index ea95e6a47..682b68ff2 100644 --- a/src/Items/ItemBoat.h +++ b/src/Items/ItemBoat.h @@ -8,14 +8,15 @@ -class cItemBoatHandler : +class cItemBoatHandler: public cItemHandler { - typedef cItemHandler super; + using Super = cItemHandler; public: - cItemBoatHandler(int a_ItemType) : - super(a_ItemType) + + cItemBoatHandler(int a_ItemType): + Super(a_ItemType) { } -- cgit v1.2.3