Compare commits

..

No commits in common. "ace9672a2ece4e26da346349ee7f694bcb75630b" and "24374b85c1218aa1e235d5a08b7f3988e6e27906" have entirely different histories.

View File

@ -1584,7 +1584,7 @@ namespace ROEditor
if (i + 1 < InUseList.Count) inuserecs = inuserecs + " "; if (i + 1 < InUseList.Count) inuserecs = inuserecs + " ";
} }
} }
if ((inuserecs ?? "") != (origFieldsInUse ?? "")) if (inuserecs != origFieldsInUse)
return true; return true;
@ -1599,7 +1599,7 @@ namespace ROEditor
if (i + 1 < InUseApplcList.Count) applicfieldrecs = applicfieldrecs + " "; if (i + 1 < InUseApplcList.Count) applicfieldrecs = applicfieldrecs + " ";
} }
} }
if ((applicfieldrecs ?? "") != (origApplicFields ?? "")) if (applicfieldrecs != origApplicFields)
return true; return true;
//nothing has changed //nothing has changed