DataWindow :

- riorganizzato file delle costanti.
This commit is contained in:
SaraP
2025-03-28 09:08:18 +01:00
parent 5b7258aaf8
commit a2c1032e81
6 changed files with 174 additions and 168 deletions
+2 -2
View File
@@ -120,14 +120,14 @@ local function ConvertAreaToTable( nAreaId)
AreaTable[JWD_SPLIT] = SplitTable
end
-- ciclo sulle aree contenute
local nChildAreaId = EgtGetFirstNameInGroup( nAreaId, WIN_AREAASTERISK)
local nChildAreaId = EgtGetFirstNameInGroup( nAreaId, WIN_AREA .. '*')
local nChildIndex = 1
while nChildAreaId do
local ChildTable = ConvertAreaToTable( nChildAreaId)
local AreaName = JWD_AREA .. nChildIndex
AreaTable[AreaName] = ChildTable
nChildIndex = nChildIndex + 1
nChildAreaId = EgtGetNextName( nChildAreaId, WIN_AREAASTERISK)
nChildAreaId = EgtGetNextName( nChildAreaId, WIN_AREA .. '*')
end
return AreaTable
end