fix issue in move window, allow 861 protocols, update todo, remove wrong code from spinbox

This commit is contained in:
Eduardo Bart
2012-01-28 16:33:12 -02:00
parent e8767d3971
commit d3a403eb93
4 changed files with 22 additions and 30 deletions

View File

@@ -52,14 +52,6 @@ function UISpinBox:onMouseWheel(mousePos, direction)
return true
end
function UISpinBox:onStyleApply(styleName, styleNode)
if styleNode.options then
for k,option in pairs(styleNode.options) do
self:addOption(option)
end
end
end
function UISpinBox:onTextChange(text)
local number = tonumber(text)
if not number or number > self.m_maximum or number < self.m_minimum then