Fix CUEConfigAdvanced copy constructor

Call to the right (copy) constructor of the base class in
CUEConfigAdvanced.cs

- Resolves #113
This commit is contained in:
Roy Damman
2021-08-24 12:48:00 +02:00
committed by Wolfgang Stöggl
parent c68f96b6fd
commit ab91cbfbed

View File

@@ -37,6 +37,7 @@ namespace CUETools.Processor
}
public CUEConfigAdvanced(CUEConfigAdvanced src)
: base(src)
{
// Iterate through each property and call SetValue()
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))