Adjusted dot after statement handling in data record

This commit is contained in:
2015-03-25 11:15:31 +01:00
parent 70fdd84ba9
commit 609251822e

View File

@ -385,6 +385,8 @@ namespace CobXmlSupport
if (tmpStr.Length > 1 && tmpStr.Substring(tmpStr.Length - 1, 1) == ".")
{
__wordList.Add(new RowWord(tmpStr.Substring(0, tmpStr.Length - 1), wrdStart, false));
__wordList.Add(new RowWord(".", wrdStart + tmpStr.Length, false));
tmpStr = "";
wrdStart = 0;
}