WoWInterface SVN Aloft

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/Aloft/Aloft
    from Rev 2603 to Rev 2604
    Reverse comparison

Rev 2603 → Rev 2604

Aloft.lua
1433,7 → 1433,7
nameTextFrame.aloftData = aloftData
 
-- WoW 5.1: children of children, these used to be on nameplateFrame
local healthBar, castBar = subFrame:GetChildren()
local healthBar, absorbBar, castBar = subFrame:GetChildren()
 
aloftData.healthBar = healthBar
healthBar.aloftData = aloftData
2097,11 → 2097,11
 
local frame = aloftData.nameplateFrame
local subFrame = select(1, frame:GetChildren())
local castBar = select(2, subFrame:GetChildren())
local castBar = select(3, subFrame:GetChildren())
 
local castBarRegion, castBarOverlayRegion, castBarShieldRegion, spellIconRegion, spellNameText, spellNameShadow, extra07, extra08 = castBar:GetRegions()
local castBarRegion, castBarOverlayRegion, castBarShieldRegion, spellIconRegion, spellNameText, spellNameShadow = castBar:GetRegions()
 
return castBarRegion, castBarOverlayRegion, castBarShieldRegion, spellIconRegion, spellNameText, spellNameShadow, extra07, extra08
return castBarRegion, castBarOverlayRegion, castBarShieldRegion, spellIconRegion, spellNameText, spellNameShadow
end
 
-----------------------------------------------------------------------------