[Libreoffice-commits] core.git: filter/source

Andras Timar andras.timar at collabora.com
Fri Jul 1 09:51:40 UTC 2016


 filter/source/svg/js2hxx.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e545a1668965f4ac59673b31696a95695230fedb
Author: Andras Timar <andras.timar at collabora.com>
Date:   Thu Jun 30 12:53:27 2016 +0200

    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 at gmail.com>
    Tested-by: Marco Cecchetti <mrcekets at gmail.com>

diff --git a/filter/source/svg/js2hxx.py b/filter/source/svg/js2hxx.py
index 1c76762..38bcab1 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):


More information about the Libreoffice-commits mailing list