From 029fcd03f4d88584c108486cd3fc7dea38f6ecf4 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 23 Apr 2015 17:07:37 +0000 Subject: [PATCH] Pass in flag that determines if the ^ character is replaced with the delta symbol. --- PROMS/Volian.Print.Library/PDFReport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Print.Library/PDFReport.cs b/PROMS/Volian.Print.Library/PDFReport.cs index a3ba5566..ebd54e6c 100644 --- a/PROMS/Volian.Print.Library/PDFReport.cs +++ b/PROMS/Volian.Print.Library/PDFReport.cs @@ -967,7 +967,7 @@ namespace Volian.Print.Library { string rotitle = ""; ROFSTLookup myrofstlookup = (itm == null)? _ROFSTLookup : itm.MyDocVersion.DocVersionAssociations[0].MyROFst.GetROFSTLookup(itm.MyDocVersion); - List roTitleList = myrofstlookup.GetROTitleAndGroupPath(roid,_IncludeMissingROs); + List roTitleList = myrofstlookup.GetROTitleAndGroupPath(roid,_IncludeMissingROs,_ConvertCaretToDelta); if (roTitleList != null && roTitleList.Count > 0) for (int cnt = 0; cnt < roTitleList.Count; cnt++) { @@ -1137,7 +1137,7 @@ namespace Volian.Print.Library } private List AddROHeaderGroupForSummary(PdfPTable datatable, string curROID,List prevROTitleList, Font f2, Color bgColor) { - List roTitleList = _ROFSTLookup.GetROTitleAndGroupPath(curROID,_IncludeMissingROs); + List roTitleList = _ROFSTLookup.GetROTitleAndGroupPath(curROID,_IncludeMissingROs,_ConvertCaretToDelta); string headerText = GetROTitleAndGroupsForSummary(roTitleList, prevROTitleList); if (headerText.Length > 0) {