WoWInterface SVN PhanxConfigWidgets

Compare Revisions

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

Rev 190 → Rev 189

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