Initial Grease Pencil 3.0 stage #106848

Merged
Falk David merged 224 commits from filedescriptor/blender:grease-pencil-v3 into main 2023-05-30 11:14:22 +02:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 7c4c8868d1 - Show all commits

View File

@ -39,11 +39,12 @@ class TreeNode : public ::GreasePencilLayerTreeNode {
this->type = type;
this->name = BLI_strdup(name.c_str());
}
TreeNode(const TreeNode &other)
TreeNode(const TreeNode &other) : children_(other.children_)
{
this->type = other.type;
this->name = BLI_strdup(other.name);
}
TreeNode(TreeNode &&other)
TreeNode(TreeNode &&other) : children_(std::move(other.children_))
{
this->name = other.name;
other.name = nullptr;