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/UI/EnchantingWindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/UI/EnchantingWindow.cpp') diff --git a/src/UI/EnchantingWindow.cpp b/src/UI/EnchantingWindow.cpp index 5ac75a2da..3e0f2cd4c 100644 --- a/src/UI/EnchantingWindow.cpp +++ b/src/UI/EnchantingWindow.cpp @@ -37,7 +37,7 @@ void cEnchantingWindow::SetProperty(short a_Property, short a_Value, cPlayer & a } m_PropertyValue[a_Property] = a_Value; - super::SetProperty(a_Property, a_Value, a_Player); + Super::SetProperty(a_Property, a_Value, a_Player); } @@ -53,7 +53,7 @@ void cEnchantingWindow::SetProperty(short a_Property, short a_Value) } m_PropertyValue[a_Property] = a_Value; - super::SetProperty(a_Property, a_Value); + Super::SetProperty(a_Property, a_Value); } @@ -84,13 +84,13 @@ void cEnchantingWindow::DistributeStack(cItem & a_ItemStack, int a_Slot, cPlayer // Enchanting Area AreasInOrder.push_back(m_SlotAreas[2]); /* Hotbar */ AreasInOrder.push_back(m_SlotAreas[1]); /* Inventory */ - super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, true); + Super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, true); } else { // Inventory or Hotbar AreasInOrder.push_back(m_SlotAreas[0]); /* Enchanting */ - super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, false); + Super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, false); } } -- cgit v1.2.3