0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 16:44:39 +03:00

carriage return escaped

This commit is contained in:
Arin Alexander 2016-09-05 21:36:01 +04:00
parent d3c9661579
commit 264c0921f3

View File

@ -252,6 +252,7 @@ QString ContentItemDesignIntf::escapeSimbols(const QString &value)
{ {
QString result = value; QString result = value;
result.replace("\"","\\\""); result.replace("\"","\\\"");
result.replace('\n',"\\n");
return result; return result;
} }