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/ItemSoup.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/Items/ItemSoup.h') diff --git a/src/Items/ItemSoup.h b/src/Items/ItemSoup.h index 958c0e0ea..60a2f8d76 100644 --- a/src/Items/ItemSoup.h +++ b/src/Items/ItemSoup.h @@ -8,14 +8,15 @@ -class cItemSoupHandler : +class cItemSoupHandler: public cItemFoodHandler { - typedef cItemFoodHandler super; + using Super = cItemFoodHandler; public: - cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo) : - super(a_ItemType, a_FoodInfo) + + cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo): + Super(a_ItemType, a_FoodInfo) { } -- cgit v1.2.3