WoWInterface SVN PhanxConfigWidgets

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 189 to Rev 190
    Reverse comparison

Rev 189 → Rev 190

PhanxConfig-KeyBinding/PhanxConfig-KeyBinding.lua
144,9 → 144,9
SaveBindings(GetCurrentBindingSet())
end
 
local func = self.func or self.OnKeyChanged
if func then
func(self, value)
local callback = self.OnValueChanged
if callback then
callback(self, value)
end
end
 
157,8 → 157,8
self.tooltipText = text
end
 
function methods:SetFunction(func)
self.func = func
function methods:SetCallback(func)
self.OnValueChanged = func
end
 
function methods:SetPoint(...)