Fixed null reference in converting tables that use underline style instead of dashes to draw the row lines

This commit is contained in:
2013-07-17 23:36:41 +00:00
parent 0eda70c1c8
commit 8f576d59df

View File

@@ -3632,7 +3632,7 @@ namespace Volian.Controls.Library
int uOnPos = -1;
int uOffPos = -1;
bool ulineOn = false;
char curChar = line[idx];
//char curChar = line[idx];
string dashRow = "";
while (idx < line.Length && !IsPrintableTableChar(line[idx]))
{