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

8201 -> 0x2009

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64414 954022d7-b5bf-4e40-9824-e11837661b57
parent 5b2c3016
...@@ -4543,7 +4543,7 @@ PasteProcessor.prototype = ...@@ -4543,7 +4543,7 @@ PasteProcessor.prototype =
nUnicode = nCharCode; nUnicode = nCharCode;
if (null != nUnicode) { if (null != nUnicode) {
var Item; var Item;
if (0x20 != nUnicode && 0xA0 != nUnicode && 8201 != nUnicode) { if (0x20 != nUnicode && 0xA0 != nUnicode && 0x2009 != nUnicode) {
Item = new ParaText(); Item = new ParaText();
Item.Set_CharCode(nUnicode); Item.Set_CharCode(nUnicode);
} }
...@@ -6538,7 +6538,7 @@ PasteProcessor.prototype = ...@@ -6538,7 +6538,7 @@ PasteProcessor.prototype =
nUnicode = nCharCode; nUnicode = nCharCode;
if (null != nUnicode) { if (null != nUnicode) {
var Item; var Item;
if (0x20 != nUnicode && 0xA0 != nUnicode && 8201 != nUnicode) { if (0x20 != nUnicode && 0xA0 != nUnicode && 0x2009 != nUnicode) {
Item = new ParaText(); Item = new ParaText();
Item.Set_CharCode(nUnicode); Item.Set_CharCode(nUnicode);
} }
...@@ -6929,7 +6929,7 @@ PasteProcessor.prototype = ...@@ -6929,7 +6929,7 @@ PasteProcessor.prototype =
nUnicode = nCharCode; nUnicode = nCharCode;
if (null != nUnicode) { if (null != nUnicode) {
var Item; var Item;
if (0x20 != nUnicode && 0xA0 != nUnicode && 8201 != nUnicode) { if (0x20 != nUnicode && 0xA0 != nUnicode && 0x2009 != nUnicode) {
Item = new ParaText(); Item = new ParaText();
Item.Value = nUnicode; 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