diff options
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 |