IParamsProvider.UpdateParam(...) returns CfgUpdateFlags now.
This commit is contained in:
@@ -40,12 +40,12 @@ namespace TBF.BenchControl.TestMethods.FlyingStart.Compound
|
||||
}
|
||||
}
|
||||
|
||||
public void UpdateParam(int i, string strValue)
|
||||
public CfgUpdateFlags UpdateParam(int i, string strValue)
|
||||
{
|
||||
switch (i)
|
||||
{
|
||||
case 0: SupressTrills = strValue.Equals(Strings.yes); return;
|
||||
default: return;
|
||||
case 0: SupressTrills = strValue.Equals(Strings.yes); return CfgUpdateFlags.None;
|
||||
default: return CfgUpdateFlags.None;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user