Work in progress: undo & redo of mixing group creation and delete

actions.
This commit is contained in:
brunoherbelin
2021-03-10 00:16:49 +01:00
parent 7656113dcc
commit 2d62ab969c
11 changed files with 338 additions and 154 deletions

View File

@@ -114,5 +114,7 @@ SourceList join (SourceList first, SourceList second)
SourceList l = second;
for (auto it = first.begin(); it != first.end(); it++)
l.push_back(*it);
l.unique();
return l;
}