mirror of
https://github.com/kepler155c/opus
synced 2025-01-11 16:20:26 +00:00
parameter validation
This commit is contained in:
parent
7220b372bd
commit
b564b1e9be
@ -1219,7 +1219,7 @@ function UI.Page:focusNext()
|
||||
end
|
||||
|
||||
function UI.Page:setFocus(child)
|
||||
if not child.focus then
|
||||
if not child or not child.focus then
|
||||
return
|
||||
end
|
||||
|
||||
|
@ -489,6 +489,7 @@ function Util.insertString(str, istr, pos)
|
||||
end
|
||||
|
||||
function Util.split(str, pattern)
|
||||
if not str then error('Util:split: invalid parameters', 2) end
|
||||
pattern = pattern or "(.-)\n"
|
||||
local t = {}
|
||||
local function helper(line) table.insert(t, line) return "" end
|
||||
|
Loading…
Reference in New Issue
Block a user