From 200116bebb819354f9ea53e2c235453289637b6d Mon Sep 17 00:00:00 2001 From: Robin Date: Sun, 24 Jan 2021 15:36:34 +0100 Subject: [PATCH] Revision 1247 --- AceGUI-3.0.lua | 4 ++-- widgets/AceGUIContainer-TabGroup.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AceGUI-3.0.lua b/AceGUI-3.0.lua index cde61f6..438650f 100644 --- a/AceGUI-3.0.lua +++ b/AceGUI-3.0.lua @@ -24,14 +24,14 @@ -- f:AddChild(btn) -- @class file -- @name AceGUI-3.0 --- @release $Id: AceGUI-3.0.lua 1231 2020-04-14 22:20:36Z nevcairiel $ +-- @release $Id: AceGUI-3.0.lua 1247 2021-01-23 23:16:39Z funkehdude $ local ACEGUI_MAJOR, ACEGUI_MINOR = "AceGUI-3.0", 41 local AceGUI, oldminor = LibStub:NewLibrary(ACEGUI_MAJOR, ACEGUI_MINOR) if not AceGUI then return end -- No upgrade needed -- Lua APIs -local tinsert = table.insert +local tinsert, wipe = table.insert, table.wipe local select, pairs, next, type = select, pairs, next, type local error, assert = error, assert local setmetatable, rawget = setmetatable, rawget diff --git a/widgets/AceGUIContainer-TabGroup.lua b/widgets/AceGUIContainer-TabGroup.lua index 195ab0b..3e45541 100644 --- a/widgets/AceGUIContainer-TabGroup.lua +++ b/widgets/AceGUIContainer-TabGroup.lua @@ -7,7 +7,7 @@ local AceGUI = LibStub and LibStub("AceGUI-3.0", true) if not AceGUI or (AceGUI:GetWidgetVersion(Type) or 0) >= Version then return end -- Lua APIs -local pairs, ipairs, assert, type, wipe = pairs, ipairs, assert, type, wipe +local pairs, ipairs, assert, type, wipe = pairs, ipairs, assert, type, table.wipe -- WoW APIs local PlaySound = PlaySound