More changes, bug fix in ResultsBrowser.

This commit is contained in:
Milan Hanajik 2017-06-08 10:40:52 +02:00
parent 21016a1500
commit f803d27882
3 changed files with 2 additions and 4 deletions

View File

@ -296,8 +296,6 @@ namespace ResultsBrowser
Results.Forms.ResultsConfigDlg dlg = new Results.Forms.ResultsConfigDlg();
dlg.MetersKind = Config.Entities.MetersKind.Single;
dlg.SelectedItems = Results.WMeterRsltItemSpec.FromStrArray(filtersConfig.ResultItems);
dlg.AvailableItems = new List<Results.WMeterRsltItemSpec>();
foreach (var v in Results.WMeterRsltItemSpec.AllItems) dlg.AvailableItems.Add(v);
if (dlg.ShowDialog() == DialogResult.OK)
{

View File

@ -8,7 +8,7 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication
{
public class TestMethodFactory : IComponentFactory
{
public string ClassName { get { return "iPerlCommunication"; } }
public string ClassName { get { return this.GetType().Namespace.Substring(17); } }
public void ResetStaticProperties() { TestMethod.ResetStaticProperties(); }

View File

@ -8,7 +8,7 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication.iPerlHead
{
public class Factory : IComponentFactory
{
public string ClassName { get { return "RegisterReader for iPerl/iPerl Head"; } }
public string ClassName { get { return "RegisterReader for iPerl"; } }
public void ResetStaticProperties() { IperlHead.ResetStaticProperties(); }