956383a - Update all libraries
[wowui.git] / libs / AceGUI-3.0 / widgets / AceGUIContainer-TabGroup.lua
index 00be129..d00470e 100644 (file)
@@ -2,7 +2,7 @@
 TabGroup Container
 Container that uses tabs on top to switch between groups.
 -------------------------------------------------------------------------------]]
 TabGroup Container
 Container that uses tabs on top to switch between groups.
 -------------------------------------------------------------------------------]]
-local Type, Version = "TabGroup", 35
+local Type, Version = "TabGroup", 36
 local AceGUI = LibStub and LibStub("AceGUI-3.0", true)
 if not AceGUI or (AceGUI:GetWidgetVersion(Type) or 0) >= Version then return end
 
 local AceGUI = LibStub and LibStub("AceGUI-3.0", true)
 if not AceGUI or (AceGUI:GetWidgetVersion(Type) or 0) >= Version then return end
 
@@ -63,7 +63,7 @@ Scripts
 -------------------------------------------------------------------------------]]
 local function Tab_OnClick(frame)
        if not (frame.selected or frame.disabled) then
 -------------------------------------------------------------------------------]]
 local function Tab_OnClick(frame)
        if not (frame.selected or frame.disabled) then
-               PlaySound("igCharacterInfoTab")
+               PlaySound(PlaySoundKitID and "igCharacterInfoTab" or 841) -- SOUNDKIT.IG_CHARACTER_INFO_TAB
                frame.obj:SelectTab(frame.value)
        end
 end
                frame.obj:SelectTab(frame.value)
        end
 end