add TableMetricLookup

This commit is contained in:
Glenn Maynard
2005-02-16 07:50:46 +00:00
parent 97498a4a3e
commit f710506c6c
@@ -20,6 +20,15 @@ function FindSelection( list )
return nil
end
-- Look up each value in a table, returning a table with the resulting strings.
function TableMetricLookup( t, group )
local ret = { }
for key, val in t do
Trace(val)
ret[key] = THEME:GetMetric(group,val)
end
return ret
end
-- (c) 2005 Glenn Maynard
-- All rights reserved.