Commit 20a1859d authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=29002 - Знаки вопроса вместо пробела после...

http://bugzserver/show_bug.cgi?id=29002 - Знаки вопроса вместо пробела после вставки текста в ячейку (doc-linux)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64407 954022d7-b5bf-4e40-9824-e11837661b57
parent 5e547235
......@@ -4540,7 +4540,7 @@ PasteProcessor.prototype =
nUnicode = nCharCode;
if (null != nUnicode) {
var Item;
if (0x20 != nUnicode && 0xA0 != nUnicode) {
if (0x20 != nUnicode && 0xA0 != nUnicode && 8201 != nUnicode) {
Item = new ParaText();
Item.Set_CharCode(nUnicode);
}
......@@ -6535,7 +6535,7 @@ PasteProcessor.prototype =
nUnicode = nCharCode;
if (null != nUnicode) {
var Item;
if (0x20 != nUnicode && 0xA0 != nUnicode) {
if (0x20 != nUnicode && 0xA0 != nUnicode && 8201 != nUnicode) {
Item = new ParaText();
Item.Set_CharCode(nUnicode);
}
......@@ -6926,7 +6926,7 @@ PasteProcessor.prototype =
nUnicode = nCharCode;
if (null != nUnicode) {
var Item;
if (0x20 != nUnicode && 0xA0 != nUnicode) {
if (0x20 != nUnicode && 0xA0 != nUnicode && 8201 != nUnicode) {
Item = new ParaText();
Item.Value = nUnicode;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment