diff --git a/PROMS/DataLoader/ROFixer.cs b/PROMS/DataLoader/ROFixer.cs index 888d0d8b..be437fcf 100644 --- a/PROMS/DataLoader/ROFixer.cs +++ b/PROMS/DataLoader/ROFixer.cs @@ -176,7 +176,7 @@ namespace DataLoader switch (frmMain.MySettings.WhatROsToConvert) { case ROUpdateMode.None: - oldval = ctmp.FixContentText(ru, myValue, myType, myRoFst, fileNameOnly); + oldval = ctmp.FixContentText(ru, myValue, myType, myRoFst, fileNameOnly,""); if(myValue == "?" && frmMain.MySettings.AnnotateWhenShowingMissingRO) Annotation.MakeAnnotation(ctmp.ContentItems[0].MyItem, VolianCommentType, "", string.Format("RO value ({0}) missing", ItemInfo.ConvertToDisplayText(oldval)), null); else if (ctmp.Text != textB4 && frmMain.MySettings.AnnotateWhenShowingDifferentRO) @@ -196,7 +196,7 @@ namespace DataLoader } else { - oldval = ctmp.FixContentText(ru, myValue, myType, myRoFst, fileNameOnly); + oldval = ctmp.FixContentText(ru, myValue, myType, myRoFst, fileNameOnly,""); if (ctmp.Text != textB4 && frmMain.MySettings.AnnotateWhenShowingDifferentRO) Annotation.MakeAnnotation(ctmp.ContentItems[0].MyItem, VolianCommentType, "", string.Format("Old RO value ({0}) different than new RO value({1})" + sameMsg, ItemInfo.ConvertToDisplayText(oldval), ItemInfo.ConvertToDisplayText(myValue)), null); }