Development #359

Merged
djankowski merged 3 commits from Development into master 2024-07-22 11:14:20 -04:00
Showing only changes of commit a1380dbb8a - Show all commits

View File

@ -2565,13 +2565,10 @@ namespace VEPROMS.CSLA.Library
else
{
//Create tree node for copied procedure when no other procedures exist in the folder
VETreeNode vtn = treeNodeReplace as VETreeNode;
DocVersionInfo dvi = vtn.VEObject as DocVersionInfo;
ItemInfo newProc = dvi.PasteChild(copyStartID);
VETreeNode tn1 = new VETreeNode(newProc);
treeNodeReplace.Nodes.Add(tn1); // add tree node to end of list.
treeNodeReplace = tn1;
VETreeNode tn = null;
tn = new VETreeNode(newItemInfo);
treeNodeReplace.Nodes.Add(tn);
treeNodeReplace = tn;
}
return newItemInfo;
}