diff options
author | Andras Timar <andras.timar@collabora.com> | 2016-06-30 12:53:27 +0200 |
---|---|---|
committer | Marco Cecchetti <mrcekets@gmail.com> | 2016-07-01 09:51:04 +0000 |
commit | e545a1668965f4ac59673b31696a95695230fedb (patch) | |
tree | eaa9a8721bf3b6a7eeb24d6b0a5eb1e43abfdfcf | |
parent | 6b400cd64e6fa2b69926cbb5f2bcbf339dd2348f (diff) |
avoid 'Compiler Error C2026 string too big, trailing characters truncated'
Change-Id: I57e74cbf7bf3a51f73f554c1f17b8c4420a1e386
Reviewed-on: https://gerrit.libreoffice.org/26834
Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Tested-by: Marco Cecchetti <mrcekets@gmail.com>
-rwxr-xr-x | filter/source/svg/js2hxx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/svg/js2hxx.py b/filter/source/svg/js2hxx.py index 1c7676218c68..38bcab12b417 100755 --- a/filter/source/svg/js2hxx.py +++ b/filter/source/svg/js2hxx.py @@ -20,7 +20,7 @@ import os, sys -MAX_LINES = 200 +MAX_LINES = 150 VARIABLE_NAME = 'aSVGScript' def get_var_decl(n): |