Added: Usefull function to get ucstring from utf8 in one step

--HG--
branch : compatibility-develop
hg/compatibility-develop
ulukyn 7 years ago
parent 24af545155
commit d6cbf71729

@ -8,6 +8,12 @@ if (webig.sheetLists==nil) then
webig.sheetLists = {} webig.sheetLists = {}
end end
function getUCtf8(text)
local uctext = ucstring()
uctext:fromUtf8(text)
return uctext
end
function webig:addSheet(dst, sheet, quality, quantity, worned, user_color, rm_class_type, rm_faber_stat_type) function webig:addSheet(dst, sheet, quality, quantity, worned, user_color, rm_class_type, rm_faber_stat_type)
if quality == nil then quality=0 end if quality == nil then quality=0 end

Loading…
Cancel
Save