diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:11:30 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:11:30 -0500 |
commit | 2b144e9d62d7aef14c0b3c4739778e0738bc0e02 (patch) | |
tree | 5636bde2137fb6a62a86caa856ba980de3eb5c17 /poxml | |
parent | 4e430ec67f2db021644d339475d5095f8ac996c0 (diff) | |
download | tdesdk-2b144e9d62d7aef14c0b3c4739778e0738bc0e02.tar.gz tdesdk-2b144e9d62d7aef14c0b3c4739778e0738bc0e02.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'poxml')
-rw-r--r-- | poxml/parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/poxml/parser.cpp b/poxml/parser.cpp index fc19468d..468ff24e 100644 --- a/poxml/parser.cpp +++ b/poxml/parser.cpp @@ -886,7 +886,7 @@ TQString escapePO(TQString msgid) if (index == -1) break; if (index > 1 && msgid.at(index - 1) == '\\' && msgid.at(index - 2) != '\\') - msgid.replace(index - 1, 3, "&POXML_LITERALTQUOTE;"); + msgid.replace(index - 1, 3, "&POXML_LITERALQUOTE;"); else msgid.replace(index, 2, "\""); } @@ -910,7 +910,7 @@ TQString escapePO(TQString msgid) } msgid.replace(TQRegExp("&POXML_LITERALLINEFEED;"), "\\n"); - msgid.replace(TQRegExp("&POXML_LITERALTQUOTE;"), "\\"); + msgid.replace(TQRegExp("&POXML_LITERALQUOTE;"), "\\"); return msgid; } |