WMeterRsltItemSpec bug fix, ver. 2.17.740
This commit is contained in:
parent
3ad842b02a
commit
2d3e14fc6c
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("2.17.739.0")]
|
||||
[assembly: AssemblyFileVersion("2.17.739.0")]
|
||||
[assembly: AssemblyVersion("2.17.740.0")]
|
||||
[assembly: AssemblyFileVersion("2.17.740.0")]
|
||||
|
||||
@ -497,6 +497,11 @@ namespace Results
|
||||
string[] result = new string[count];
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
if (items[i].Caption == null) items[i].Caption = string.Empty;
|
||||
if (items[i].TestID == null) items[i].TestID = string.Empty;
|
||||
if (items[i].Format == null) items[i].Format = string.Empty;
|
||||
if (items[i].Precision == null) items[i].Precision = string.Empty;
|
||||
|
||||
result[i] = string.Format("{0}~{1}~{2}~{3}~{4}~{5}~{6}~{7}",
|
||||
items[i].Uid,
|
||||
items[i].Caption.Replace("~", "\n"),
|
||||
|
||||
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("2.17.739.1")]
|
||||
[assembly: AssemblyFileVersion("2.17.739.1")]
|
||||
[assembly: AssemblyVersion("2.17.740.0")]
|
||||
[assembly: AssemblyFileVersion("2.17.740.0")]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user