WMeterRsltItemSpec bug fix, ver. 2.17.740

This commit is contained in:
Milan Hanajik 2017-11-21 10:41:36 +01:00
parent 3ad842b02a
commit 2d3e14fc6c
3 changed files with 9 additions and 4 deletions

View File

@ -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")]

View File

@ -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"),

View File

@ -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")]