WoWInterface SVN mikma

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /PartyHardyMF/Libs
    from Rev 728 to Rev 729
    Reverse comparison

Rev 728 → Rev 729

LibMessageFrame-1.0.lua
67,17 → 67,17
return row
end
 
function lib.Update(parent,row,text)
function lib.Update(parent,identify,text)
for k,v in pairs(parent.rows) do
if v.ident == row then
if v.ident == identify then
v.text:SetText(text)
end
end
end
 
function lib.Change(parent,row,new)
function lib.Change(parent,identify,new)
for k,v in pairs(parent.rows) do
if v.ident == row then
if v.ident == identify then
v.ident = new
end
end