[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - filter/source

Andras Timar andras.timar at collabora.com
Thu Jun 30 10:54:09 UTC 2016


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

New commits:
commit 6835231ec6e406787831911c6f1de2eb7547024f
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: I7580b1b9bb5323c13c19cef86d50fde19a2f3a97

diff --git a/filter/source/svg/js2hxx.py b/filter/source/svg/js2hxx.py
index 5d6ddd51..f5f6352 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