This commit is contained in:
Kathy Ruffing 2010-09-28 17:02:18 +00:00
parent 4a7ba52151
commit 5df6e5c985

View File

@ -1552,7 +1552,7 @@ namespace VEPROMS.CSLA.Library
DocumentInfo myDocument = MyContent.MyEntry.MyDocument; DocumentInfo myDocument = MyContent.MyEntry.MyDocument;
if (myDocument.LibTitle != "") if (myDocument.LibTitle != "")
{ {
toolTip += string.Format("\r\n(Library Document - {0})", myDocument.LibTitle); toolTip += string.Format("\r\n(Library Document - {0})\r\n", myDocument.LibTitle);
toolTip += myDocument.LibraryDocumentUsage; toolTip += myDocument.LibraryDocumentUsage;
} }
return toolTip; return toolTip;
@ -1584,15 +1584,7 @@ namespace VEPROMS.CSLA.Library
if (sc.Step_CBOverride == null) if (sc.Step_CBOverride == null)
return (DTS > MyProcedure.DTS); return (DTS > MyProcedure.DTS);
else // override is on: else // override is on:
{ return (sc.Step_CBOverride == "On");
// If the date time stamp says that text was changed so a change bar should exist,
// check override to see how change bar controls are set. The override flag can
// be either On or Off.
if (DTS > MyProcedure.DTS)
return (sc.Step_CBOverride == "On");
else
return (sc.Step_CBOverride == "Off");
}
} }
#endregion #endregion
#region IVEReadOnlyItem #region IVEReadOnlyItem