浏览代码

Update HelperFunctions.cs

fixed lastChar initialization
master
Jan Bernlöhr 9 年前
父节点
当前提交
d3ab4fbadf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      DocX/HelperFunctions.cs

+ 1
- 1
DocX/HelperFunctions.cs 查看文件

@@ -550,7 +550,7 @@ namespace Novacode
return newRuns; //I dont wanna get an exception if text == null, so just return empy list
}
char lastChar = null;
char lastChar = '\0';
foreach (char c in text)
{

正在加载...
取消
保存