From 609251822e7eb02561eb51aa75f6093723cd9772 Mon Sep 17 00:00:00 2001 From: tfoman Date: Wed, 25 Mar 2015 11:15:31 +0100 Subject: [PATCH] Adjusted dot after statement handling in data record --- CobXmlSupport/CobRow.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CobXmlSupport/CobRow.cs b/CobXmlSupport/CobRow.cs index f4107a5..96c6bd8 100644 --- a/CobXmlSupport/CobRow.cs +++ b/CobXmlSupport/CobRow.cs @@ -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; }