WoWInterface SVN OpenRDX

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /branches
    from Rev 567 to Rev 568
    Reverse comparison

Rev 567 → Rev 568

7.5_cataclysm/RDX/DesktopMgr/Obj_Desktop.lua
506,10 → 506,10
local srcframe = frameList[src.name];
local tgtframe = frameList[tgt.name];
if srcframe and tgtframe then
local srcx, srcy = VFLUI.GetUniversalPoint(srcframe, srcpt);
local tgtx, tgty = VFLUI.GetUniversalPoint(tgtframe, tgtpt);
x = tgtx - srcx;
y = tgty - srcy;
local srcx, srcy = VFLUI.GetPoint(srcframe, srcpt);
local tgtx, tgty = VFLUI.GetPoint(tgtframe, tgtpt);
x = srcx - tgtx ;
y = srcy - tgty;
RDXDK.DoOffset(src, srcpt, tgt, tgtpt, x, y);
end
end
7.5_cataclysm/RDX/Designs/Lists/HeaderAuraEngine.lua
165,7 → 165,7
s:Hide();
-- Invoke :Destroy on any children that have a destroy method
-- in fact doesn't work but....
for _,child in self:AllChildren() do
for _,child in s:AllChildren() do
if child.Destroy then
child:Destroy(); child.Destroy = nil;
end