diff options
author | 2015-04-16 14:16:14 +0200 | |
---|---|---|
committer | 2015-04-16 14:16:14 +0200 | |
commit | 2b97bfba29e2ff0ed1864f6111a687ac1b61da43 (patch) | |
tree | 5913c15c09f03992d7f744d97957f978d2c8723a /3rdparty/genie/src/base/api.lua | |
parent | 08747b36ecb01d5d77e33908372ac132fdd61453 (diff) |
update to latest 3rdparty, rollback of genie change (nw)
Diffstat (limited to '3rdparty/genie/src/base/api.lua')
-rw-r--r-- | 3rdparty/genie/src/base/api.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/genie/src/base/api.lua b/3rdparty/genie/src/base/api.lua index d5ba16f010d..24bcf2677e7 100644 --- a/3rdparty/genie/src/base/api.lua +++ b/3rdparty/genie/src/base/api.lua @@ -906,7 +906,7 @@ -- the group object -- - local function creategroup(name, sln, parent, inpath) + local function creategroup(name, sln, curpath, parent, inpath) local group = {} @@ -921,7 +921,7 @@ group.solution = sln group.name = name - group.uuid = os.uuid(group.name) + group.uuid = os.uuid(curpath) group.parent = parent return group end @@ -951,7 +951,7 @@ local group = sln.groups[curpath] if group == nil then - group = creategroup(v, sln, lastgroup, curpath) + group = creategroup(v, sln, curpath, lastgroup, curpath) end lastgroup = group end |