[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-7' - external/libxslt

2015-11-24 Thread Michael Stahl
 
external/libxslt/0001-Fix-for-type-confusion-in-preprocessing-attributes.patch.1
 |   29 ++
 external/libxslt/UnpackedTarball_xslt.mk   
  |1 
 2 files changed, 30 insertions(+)

New commits:
commit 431067cc9fbe0657a0e6b2ce6a91035ca36396ef
Author: Michael Stahl 
Date:   Fri Nov 20 13:53:43 2015 +0100

libxslt: add patch for CVE-2015-7995

(cherry picked from commit 45d1abeff9d4041b3e174f0eddd10bfd6ab8a360)

Change-Id: I733cd21f6d8c7ea1e01f594d1483ad9c2043c188
Reviewed-on: https://gerrit.libreoffice.org/20097
Reviewed-by: Christian Lohmaier 
Tested-by: Christian Lohmaier 
(cherry picked from commit 17c513b7fca9304b635a57d11de77d7eccf7188a)
Reviewed-on: https://gerrit.libreoffice.org/20155
Reviewed-by: Thorsten Behrens 
Tested-by: Thorsten Behrens 
Reviewed-by: Eike Rathke 

diff --git 
a/external/libxslt/0001-Fix-for-type-confusion-in-preprocessing-attributes.patch.1
 
b/external/libxslt/0001-Fix-for-type-confusion-in-preprocessing-attributes.patch.1
new file mode 100644
index 000..4f87e79
--- /dev/null
+++ 
b/external/libxslt/0001-Fix-for-type-confusion-in-preprocessing-attributes.patch.1
@@ -0,0 +1,29 @@
+From 7ca19df892ca22d9314e95d59ce2abdeff46b617 Mon Sep 17 00:00:00 2001
+From: Daniel Veillard 
+Date: Thu, 29 Oct 2015 19:33:23 +0800
+Subject: [PATCH] Fix for type confusion in preprocessing attributes
+
+CVE-2015-7995 http://www.openwall.com/lists/oss-security/2015/10/27/10
+We need to check that the parent node is an element before dereferencing
+its namespace
+---
+ libxslt/preproc.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/libxslt/preproc.c b/libxslt/preproc.c
+index 0eb80a0..7f69325 100644
+--- a/libxslt/preproc.c
 b/libxslt/preproc.c
+@@ -2249,7 +2249,8 @@ xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr 
inst) {
+   } else if (IS_XSLT_NAME(inst, "attribute")) {
+   xmlNodePtr parent = inst->parent;
+ 
+-  if ((parent == NULL) || (parent->ns == NULL) ||
++  if ((parent == NULL) ||
++  (parent->type != XML_ELEMENT_NODE) || (parent->ns == NULL) ||
+   ((parent->ns != inst->ns) &&
+(!xmlStrEqual(parent->ns->href, inst->ns->href))) ||
+   (!xmlStrEqual(parent->name, BAD_CAST "attribute-set"))) {
+-- 
+2.4.3
+
diff --git a/external/libxslt/UnpackedTarball_xslt.mk 
b/external/libxslt/UnpackedTarball_xslt.mk
index 5ed0860..73ef460 100644
--- a/external/libxslt/UnpackedTarball_xslt.mk
+++ b/external/libxslt/UnpackedTarball_xslt.mk
@@ -20,6 +20,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,xslt,\
external/libxslt/libxslt-1.1.26-memdump.patch \
$(if $(filter ANDROID,$(OS)),external/libxslt/libxslt-android.patch) \
external/libxslt/libxslt-config-guess.patch.0 \
+   
external/libxslt/0001-Fix-for-type-confusion-in-preprocessing-attributes.patch.1
 \
 ))
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-7' - download.lst external/libxml2

2015-11-24 Thread Michael Stahl
 download.lst |2 +-
 external/libxml2/ExternalPackage_xml2.mk |2 +-
 external/libxml2/UnpackedTarball_xml2.mk |1 -
 external/libxml2/libxml2-freebsd.patch.1 |   15 ---
 external/libxml2/libxml2-icu.patch.0 |2 +-
 external/libxml2/libxml2-vc10.patch  |2 ++
 6 files changed, 5 insertions(+), 19 deletions(-)

New commits:
commit 88370c439b898044e6799b116adfc6fa0e7314b0
Author: Michael Stahl 
Date:   Fri Nov 20 13:50:51 2015 +0100

libxml2: upgrade to version 2.9.3

- drop libxml2-freebsd.patch.1 (upstream libtool 2.4.6 does the same)
- drop libxml2-vc15.patch (fixed upstream)

Reviewed-on: https://gerrit.libreoffice.org/20084
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 
(cherry picked from commit 391bcf348d585b5e246ec808833af522edd371f2)

Change-Id: Ia2f194f39efebd3d2ea924d23a5543ac53e93116
Reviewed-on: https://gerrit.libreoffice.org/20096
Reviewed-by: Christian Lohmaier 
Tested-by: Christian Lohmaier 
(cherry picked from commit d960a8b17b74417aa61ce226fced5b0fa185acf5)
Reviewed-on: https://gerrit.libreoffice.org/20154
Reviewed-by: Thorsten Behrens 
Reviewed-by: Eike Rathke 

diff --git a/download.lst b/download.lst
index 707344f..800267f 100644
--- a/download.lst
+++ b/download.lst
@@ -95,7 +95,7 @@ export LIBGLTF_MD5SUM := d63a9f47ab048f5009d90693d6aa6424
 export LIBGLTF_TARBALL := libgltf-0.0.2.tar.bz2
 export LIBLANGTAG_TARBALL := 
36271d3fa0d9dec1632029b6d7aac925-liblangtag-0.5.1.tar.bz2
 export LIBXMLSEC_TARBALL := 
1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
-export LIBXML_TARBALL := 9c0cfef285d5c4a5c80d00904ddab380-libxml2-2.9.1.tar.gz
+export LIBXML_TARBALL := daece17e045f1c107610e137ab50c179-libxml2-2.9.3.tar.gz
 export LIBXSLT_TARBALL := 
9667bf6f9310b957254fdcf6596600b7-libxslt-1.1.28.tar.gz
 export LPSOLVE_TARBALL := 26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz
 export MARIADB_TARBALL := 
a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz
diff --git a/external/libxml2/ExternalPackage_xml2.mk 
b/external/libxml2/ExternalPackage_xml2.mk
index a0bf5eb..3694937 100644
--- a/external/libxml2/ExternalPackage_xml2.mk
+++ b/external/libxml2/ExternalPackage_xml2.mk
@@ -21,7 +21,7 @@ else # COM=MSC
 $(eval $(call 
gb_ExternalPackage_add_file,xml2,$(LIBO_URE_LIB_FOLDER)/libxml2.dll,win32/bin.msvc/libxml2.dll))
 endif
 else # OS!=WNT
-$(eval $(call 
gb_ExternalPackage_add_file,xml2,$(LIBO_URE_LIB_FOLDER)/libxml2.so.2,.libs/libxml2.so.2.9.1))
+$(eval $(call 
gb_ExternalPackage_add_file,xml2,$(LIBO_URE_LIB_FOLDER)/libxml2.so.2,.libs/libxml2.so.2.9.3))
 endif
 endif # DISABLE_DYNLOADING
 
diff --git a/external/libxml2/UnpackedTarball_xml2.mk 
b/external/libxml2/UnpackedTarball_xml2.mk
index 9c53b1f..5cff2ae 100644
--- a/external/libxml2/UnpackedTarball_xml2.mk
+++ b/external/libxml2/UnpackedTarball_xml2.mk
@@ -13,7 +13,6 @@ $(eval $(call 
gb_UnpackedTarball_set_tarball,xml2,$(LIBXML_TARBALL),,libxml2))
 
 $(eval $(call gb_UnpackedTarball_add_patches,xml2,\
external/libxml2/libxml2-config.patch.1 \
-   external/libxml2/libxml2-freebsd.patch.1 \
external/libxml2/libxml2-global-symbols.patch \
external/libxml2/libxml2-vc10.patch \
$(if $(filter ANDROID,$(OS)),external/libxml2/libxml2-android.patch) \
diff --git a/external/libxml2/libxml2-freebsd.patch.1 
b/external/libxml2/libxml2-freebsd.patch.1
deleted file mode 100644
index a874315..000
--- a/external/libxml2/libxml2-freebsd.patch.1
+++ /dev/null
@@ -1,15 +0,0 @@
-Usual patch to produce Linux-like .so files on FreeBSD
-
 a/ltmain.sh2009-10-06 17:39:54.0 +0100
-+++ b/ltmain.sh2009-12-17 11:43:56.0 +
-@@ -6271,8 +6271,8 @@
- ;;
- 
-   freebsd-elf)
--major=".$current"
--versuffix=".$current"
-+major=.`expr $current - $age`
-+versuffix=".$major.$age.$revision";
- ;;
- 
-   irix | nonstopux)
diff --git a/external/libxml2/libxml2-icu.patch.0 
b/external/libxml2/libxml2-icu.patch.0
index 4db9f9b..da05e40 100644
--- a/external/libxml2/libxml2-icu.patch.0
+++ b/external/libxml2/libxml2-icu.patch.0
@@ -3,7 +3,7 @@ diff -up win32/Makefile.msvc.dt win32/Makefile.msvc
 +++ win32/Makefile.msvc2014-07-18 19:01:39.347982929 +0200
 @@ -45,6 +45,7 @@ CPPFLAGS = $(CPPFLAGS) /D "_REENTRANT"
  CC = cl.exe
- CFLAGS = /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "HAVE_CONFIG_H" /D 
"NOLIBTOOL" /W1 $(CRUNTIME)
+ CFLAGS = /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "NOLIBTOOL" /W1 
$(CRUNTIME)
  CFLAGS = $(CFLAGS) /I$(XML_SRCDIR) /I$(XML_SRCDIR)\include /I$(INCPREFIX)
 +CFLAGS = $(CFLAGS) /I$(WORKDIR)/UnpackedTarball/icu/source/i18n 
/I$(WORKDIR)/UnpackedTarball/icu/source/common
  !if 

[Libreoffice-bugs] [Bug 61228] TABLE: Function summe() does not sum up but returns last item

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61228

--- Comment #11 from Commit Notification 
 ---
Julien Nabet committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=d667e3210b12c7ce3b3727e2a0e369a520fbaaa4

tdf#61228: Wrong function names in Formula Writer are considered as SUM

It will be available in 5.1.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96047] Rename “Display Mode” to “Display Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #3 from Cor Nouws  ---
To me, lay out is telling about the arrangement of the content in the document.
Display is in my understanding more related to the way how the document is
shown.
But English is not my native language.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 69932] VIEWING: LibO 4.x.x flicker

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69932

--- Comment #15 from guenth...@mca.org.tw ---
(In reply to tommy27 from comment #14)
> LibO 5.0.1 is out. has the Linux flickering changed?

I can confirm that the windows build (LibreOffice 5.0.3.2) still has this
problem

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - basic/source

2015-11-24 Thread Damjan Jovanovic
 basic/source/comp/token.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit f8a51d0f5a645704bc2bdc939474ac931d9c
Author: Damjan Jovanovic 
Date:   Tue Nov 24 18:56:10 2015 +

#i117960# Basic: Line Input doesn't work in single-line If

i92642 added the ability to use certain keywords as variable names (eg. 
name = 1, line = "hi"),
but also caused a regression where "Line Input" is broken in single-line If 
statements.
This patch fixes that by allowing Then and Else to also be the 
start-of-line tokens expected to
immediately preceed the "Line" token in order for that "Line" token to be 
recognized a keyword instead
of a variable name. Also added FVT spreadsheet tests for "Line" as both a 
variable name and as "Line Input".

Patch by: me

diff --git a/basic/source/comp/token.cxx b/basic/source/comp/token.cxx
index bf8c5ef..655655e 100644
--- a/basic/source/comp/token.cxx
+++ b/basic/source/comp/token.cxx
@@ -557,7 +557,8 @@ SbiToken SbiTokenizer::Next()
 }
 special:
 // #i92642
-bool bStartOfLine = (eCurTok == NIL || eCurTok == REM || eCurTok == EOLN);
+bool bStartOfLine = (eCurTok == NIL || eCurTok == REM || eCurTok == EOLN ||
+eCurTok == THEN || eCurTok == ELSE); // single line If
 if( !bStartOfLine && (tp->t == NAME || tp->t == LINE) )
 return eCurTok = SYMBOL;
 else if( tp->t == TEXT )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 61228] TABLE: Function summe() does not sum up but returns last item

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61228

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.1.0

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96048] New: Chart shows wrong y-value

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96048

Bug ID: 96048
   Summary: Chart shows wrong y-value
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m.schipperh...@gmail.com

Created attachment 120772
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120772=edit
chart

I have a line and bar chart where the line part of the chart shows a value that
is elevated by 200.000 across the entire chart. It seems the y-value is wrongly
referenced.

The bar values are correctly referenced.

I save the document as an xlsx.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 96047] Rename “Display Mode” to “Display Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #3 from Cor Nouws  ---
To me, lay out is telling about the arrangement of the content in the document.
Display is in my understanding more related to the way how the document is
shown.
But English is not my native language.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


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

2015-11-24 Thread Eike Rathke
 sc/source/filter/oox/richstring.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7289a140fc68dc898ba2b2357cc960968195f236
Author: Eike Rathke 
Date:   Wed Nov 25 00:48:39 2015 +0100

Revert "Resolves: tdf#95629 import also 0x0D as rich EditCell, not only 
0x0A"

This reverts commit 22ebafe8897239696f46df6f093054d16285004a.

It seems to break various sc.subsequentcheck targets.

diff --git a/sc/source/filter/oox/richstring.cxx 
b/sc/source/filter/oox/richstring.cxx
index 7484bbf..b415876 100644
--- a/sc/source/filter/oox/richstring.cxx
+++ b/sc/source/filter/oox/richstring.cxx
@@ -375,7 +375,7 @@ bool RichString::extractPlainString( OUString& orString, 
const oox::xls::Font* p
 if( (maTextPortions.size() == 1) && !maTextPortions.front()->hasFont() && 
!lclNeedsRichTextFormat( pFirstPortionFont ) )
 {
 orString = maTextPortions.front()->getText();
-return orString.indexOf( '\x0A' ) < 0 && orString.indexOf( '\x0D' ) < 
0;
+return orString.indexOf( '\x0A' ) < 0;
 }
 return false;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[SOLVED] Re: Build fail (Linux), "cannot find -lGL"

2015-11-24 Thread julien2412
"apt-get build-dep libreoffice" allowed me to find the missing lib.
It builds right now, sorry for the noise.

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Build-fail-Linux-cannot-find-lGL-tp4167174p4167262.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 96047] Rename “Display Mode” to “Display Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

--- Comment #1 from Óvári  ---
Suggestion to rename “Display Mode” to “Display Layout”

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35563] FORMATTING: Add text wrapping around images

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35563

testjava  changed:

   What|Removed |Added

 CC||testingorj...@yahoo.com

--- Comment #14 from testjava  ---
Bug /missing feature confirmed on:
Version: 5.1.0.0.alpha1
Build-ID: a8e4f75fe264f6ece37c154951cff53f2f4fa3e4
Gebietsschema: de-DE (de_DE)
Windows XP

I inserted directed in the textbox as an image and was used as a backgroud. I
also pasted outside the textbox but then the text was hidden.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 96047] Rename “Display Mode” to “Display Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

Joel Madero  changed:

   What|Removed |Added

   Priority|medium  |lowest
 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|Impress |ux-advise
 Ever confirmed|0   |1
 Whiteboard||needsDevEval
   Severity|normal  |trivial

--- Comment #2 from Joel Madero  ---
A decision for UX to make.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 96030] FILEOPEN: Wrong calculation compared to Excel 2010

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96030

--- Comment #6 from m.a.riosv  ---
Created attachment 120770
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120770=edit
Reduced sample file.

@Florian, opening the file after two hard recalc I get and Err:522
->Error:circular reference, with the third hard recalc the results seems Ok.

After a lot of trials to reduce the file size, I have found that the origin of
the issue is OpenCL, disabling it I think solves the issue.

Attached a reduced file sample, if OpenCL enable just the cell F101 makes the
difference, deleting this cell and seems it works Ok again.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96030] FILEOPEN: Wrong calculation compared to Excel 2010

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96030

m.a.riosv  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #7 from m.a.riosv  ---
I don't think it is a regression, with OpenCL active the same happens in 4.3.7
and 4.4.7

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2015-11-24 Thread Julien Nabet
 sw/source/core/bastyp/calc.cxx |   23 ++-
 1 file changed, 14 insertions(+), 9 deletions(-)

New commits:
commit d667e3210b12c7ce3b3727e2a0e369a520fbaaa4
Author: Julien Nabet 
Date:   Sun Nov 22 17:42:08 2015 +0100

tdf#61228: Wrong function names in Formula Writer are considered as SUM

Unknown names make the formula fail
PythonTest_sw_python, especially set_expression is ok
Variables are taken into account

Thanks to Mike Kaganski for his help on this patch.

Change-Id: Ia6f9c54d90ce88138fd9c9df9422b34ce8223ca2
Reviewed-on: https://gerrit.libreoffice.org/20122
Tested-by: Jenkins 
Reviewed-by: Mike Kaganski 

diff --git a/sw/source/core/bastyp/calc.cxx b/sw/source/core/bastyp/calc.cxx
index 1317ec2..8b12d87 100644
--- a/sw/source/core/bastyp/calc.cxx
+++ b/sw/source/core/bastyp/calc.cxx
@@ -1317,16 +1317,21 @@ SwSbxValue SwCalc::Prim()
 break;
 
 case CALC_NAME:
-if( GetToken() == CALC_ASSIGN )
+switch(SwCalcOper nOper = GetToken())
 {
-SwCalcExp* n = VarInsert( aVarName );
-GetToken();
-nErg = n->nValue = Expr();
-}
-else
-{
-nErg = VarLook( aVarName )->nValue;
-bChkPow = true;
+case CALC_ASSIGN:
+{
+SwCalcExp* n = VarInsert(aVarName);
+GetToken();
+nErg = n->nValue = Expr();
+}
+break;
+default:
+nErg = VarLook(aVarName)->nValue;
+if (nErg.IsVoidValue() && (nOper == CALC_LP))
+eError = CALC_SYNTAX;
+else
+bChkPow = true;
 }
 break;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - translations

2015-11-24 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ae9d0e18cabbe1c927ef8aebcbc5165d19335734
Author: Christian Lohmaier 
Date:   Tue Nov 24 18:35:20 2015 +0100

Updated core
Project: translations  8d4265a78c399ea8c881fc3897231f21f3877c1d

update translations for 4.4.7 rc2

and force-fix errors using pocheck

Change-Id: I9f338eff9a6b541b7ca5fa0db95fc550d7c1badd

diff --git a/translations b/translations
index 7073798..8d4265a 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 707379846961650781992c9f28ddc908277e3d08
+Subproject commit 8d4265a78c399ea8c881fc3897231f21f3877c1d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-11-24 Thread Eike Rathke
 sc/source/filter/oox/richstring.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 22ebafe8897239696f46df6f093054d16285004a
Author: Eike Rathke 
Date:   Tue Nov 24 22:07:03 2015 +0100

Resolves: tdf#95629 import also 0x0D as rich EditCell, not only 0x0A

Change-Id: I58d9d7dcbcd1e6cf5ae51532982d7d3525038984

diff --git a/sc/source/filter/oox/richstring.cxx 
b/sc/source/filter/oox/richstring.cxx
index b415876..7484bbf 100644
--- a/sc/source/filter/oox/richstring.cxx
+++ b/sc/source/filter/oox/richstring.cxx
@@ -375,7 +375,7 @@ bool RichString::extractPlainString( OUString& orString, 
const oox::xls::Font* p
 if( (maTextPortions.size() == 1) && !maTextPortions.front()->hasFont() && 
!lclNeedsRichTextFormat( pFirstPortionFont ) )
 {
 orString = maTextPortions.front()->getText();
-return orString.indexOf( '\x0A' ) < 0;
+return orString.indexOf( '\x0A' ) < 0 && orString.indexOf( '\x0D' ) < 
0;
 }
 return false;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: include/vcl vcl/source

2015-11-24 Thread Michael Meeks
 include/vcl/scheduler.hxx|2 +-
 vcl/source/app/idle.cxx  |5 +
 vcl/source/app/scheduler.cxx |   31 +--
 vcl/source/app/svapp.cxx |9 -
 4 files changed, 27 insertions(+), 20 deletions(-)

New commits:
commit 87199d3829257420429057336283c55be6ae7481
Author: Michael Meeks 
Date:   Tue Nov 24 16:59:29 2015 +

vcl: re-introduce idle handling.

The idea here is that we should process 'idle' events - like re-paint
after we have processed any OS messages - such as key/mouse input,
window re-size events etc.

The previous approach wasn't achieving this - it was processing a single
idle event each time around the main-loop iteration; urk.

Lubos implemented something -like- this, the vestiges of it need cleaning
up and removing in: 06d731428ef6cf93c7333e8228bfb6088853b52f but it was
disabled (most likely because it broke gtk in tdf#91727, which was itself
broken by using silly values for timeouts in the scheduler (now fixed))

Tested on Windows, gtk, kde4, unx-generic.

Change-Id: I7756bca874779c00f72b372cacb7745d0f189f66
Reviewed-on: https://gerrit.libreoffice.org/20158
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx
index be9df9e..5771f3a 100644
--- a/include/vcl/scheduler.hxx
+++ b/include/vcl/scheduler.hxx
@@ -94,7 +94,7 @@ public:
 // Process one pending Timer with highhest priority
 static void CallbackTaskScheduling( bool ignore );
 /// Calculate minimum timeout - and return its value.
-static sal_uInt64 CalculateMinimumTimeout();
+static sal_uInt64 CalculateMinimumTimeout( bool  );
 /// Process one pending task ahead of time with highhest priority.
 static void   ProcessTaskScheduling( bool bTimer );
 };
diff --git a/vcl/source/app/idle.cxx b/vcl/source/app/idle.cxx
index 5ce5361..bba2d05 100644
--- a/vcl/source/app/idle.cxx
+++ b/vcl/source/app/idle.cxx
@@ -48,10 +48,7 @@ void Idle::Start()
 
 bool Idle::ReadyForSchedule( bool bTimer ) const
 {
-// tdf#91727 - We need to re-work this to allow only UI idle handlers
-// and not timeouts to be processed in some limited scenarios
-(void)bTimer;
-return true; // !bTimer
+return !bTimer;
 }
 
 sal_uInt64 Idle::UpdateMinPeriod( sal_uInt64 nMinPeriod, sal_uInt64 /* nTime 
*/ ) const
diff --git a/vcl/source/app/scheduler.cxx b/vcl/source/app/scheduler.cxx
index b5e64e2..743de91 100644
--- a/vcl/source/app/scheduler.cxx
+++ b/vcl/source/app/scheduler.cxx
@@ -153,7 +153,7 @@ void Scheduler::CallbackTaskScheduling(bool ignore)
 {
 // this function is for the saltimer callback
 (void)ignore;
-Scheduler::ProcessTaskScheduling( true );
+Scheduler::ProcessTaskScheduling( false );
 }
 
 void Scheduler::ProcessTaskScheduling( bool bTimerOnly )
@@ -168,7 +168,7 @@ void Scheduler::ProcessTaskScheduling( bool bTimerOnly )
 }
 }
 
-sal_uInt64 Scheduler::CalculateMinimumTimeout()
+sal_uInt64 Scheduler::CalculateMinimumTimeout( bool  )
 {
 // process all pending Tasks
 // if bTimer True, only handle timer
@@ -181,13 +181,11 @@ sal_uInt64 Scheduler::CalculateMinimumTimeout()
 pSchedulerData = pSVData->mpFirstSchedulerData;
 while ( pSchedulerData )
 {
-if( pSchedulerData->mbInScheduler )
-{
-pPrevSchedulerData = pSchedulerData;
-pSchedulerData = pSchedulerData->mpNext;
-}
+ImplSchedulerData *pNext = pSchedulerData->mpNext;
+
 // Should Task be released from scheduling?
-else if ( pSchedulerData->mbDelete )
+if ( !pSchedulerData->mbInScheduler &&
+  pSchedulerData->mbDelete )
 {
 if ( pPrevSchedulerData )
 pPrevSchedulerData->mpNext = pSchedulerData->mpNext;
@@ -195,19 +193,24 @@ sal_uInt64 Scheduler::CalculateMinimumTimeout()
 pSVData->mpFirstSchedulerData = pSchedulerData->mpNext;
 if ( pSchedulerData->mpScheduler )
 pSchedulerData->mpScheduler->mpSchedulerData = nullptr;
-ImplSchedulerData* pTempSchedulerData = pSchedulerData;
-pSchedulerData = pSchedulerData->mpNext;
-delete pTempSchedulerData;
+pNext = pSchedulerData->mpNext;
+delete pSchedulerData;
 }
 else
 {
-nMinPeriod = pSchedulerData->mpScheduler->UpdateMinPeriod( 
nMinPeriod, nTime );
+if (!pSchedulerData->mbInScheduler)
+{
+if ( pSchedulerData->mpScheduler->ReadyForSchedule( true ) )
+nMinPeriod = pSchedulerData->mpScheduler->UpdateMinPeriod( 
nMinPeriod, nTime );
+else
+bHasActiveIdles = true;
+}
 pPrevSchedulerData = 

[Libreoffice-bugs] [Bug 92272] SLIDESHOW: slide color inversion during transitions

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92272

--- Comment #13 from roumanet  ---
Under Windows too... I'm teacher and use transitions for some video curses :
could you publish a patch for Windows users ?
Thanks

example of problem
http://david.roumanet.free.fr/bug_transition.avi

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] translations.git: Branch 'libreoffice-4-4' - source/de source/es source/hu source/is source/lt

2015-11-24 Thread Christian Lohmaier
 source/de/helpcontent2/source/text/schart/01.po   |   10 -
 source/de/helpcontent2/source/text/shared/01.po   |   10 -
 source/de/helpcontent2/source/text/shared/optionen.po |6 -
 source/de/sfx2/source/doc.po  |   10 -
 source/de/svx/source/dialog.po|   16 +-
 source/es/helpcontent2/source/text/sbasic/guide.po|   12 +-
 source/es/helpcontent2/source/text/sbasic/shared.po   |8 -
 source/es/helpcontent2/source/text/sbasic/shared/01.po|   10 -
 source/es/helpcontent2/source/text/scalc/01.po|   36 +++---
 source/es/helpcontent2/source/text/scalc/04.po|   10 -
 source/es/helpcontent2/source/text/scalc/guide.po |   28 ++--
 source/es/helpcontent2/source/text/schart/01.po   |   20 +--
 source/es/helpcontent2/source/text/sdraw/guide.po |   20 +--
 source/es/helpcontent2/source/text/shared/00.po   |   10 -
 source/es/helpcontent2/source/text/shared/01.po   |   30 ++---
 source/es/helpcontent2/source/text/shared/02.po   |   10 -
 source/es/helpcontent2/source/text/shared/05.po   |   10 -
 source/es/helpcontent2/source/text/shared/autopi.po   |   12 +-
 source/es/helpcontent2/source/text/shared/guide.po|   22 +--
 source/es/helpcontent2/source/text/shared/optionen.po |   18 +--
 source/es/helpcontent2/source/text/simpress/02.po |   10 -
 source/es/helpcontent2/source/text/simpress/guide.po  |6 -
 source/es/helpcontent2/source/text/smath/01.po|   46 +++
 source/es/helpcontent2/source/text/swriter/guide.po   |8 -
 source/es/officecfg/registry/data/org/openoffice/Office/UI.po |   12 +-
 source/es/svx/source/svdraw.po|   12 +-
 source/es/sw/source/ui/utlui.po   |6 -
 source/es/swext/mediawiki/help.po |6 -
 source/es/wizards/source/formwizard.po|8 -
 source/hu/officecfg/registry/data/org/openoffice/Office.po|   10 -
 source/hu/officecfg/registry/data/org/openoffice/Office/UI.po |   12 --
 source/hu/sd/source/ui/app.po |   12 +-
 source/hu/sw/uiconfig/swriter/ui.po   |   11 -
 source/hu/uui/uiconfig/ui.po  |   11 -
 source/is/helpcontent2/source/text/scalc/01.po|   58 +-
 source/is/helpcontent2/source/text/scalc/02.po|   11 +
 source/is/helpcontent2/source/text/scalc/guide.po |   18 +--
 source/is/helpcontent2/source/text/schart/01.po   |   27 ++--
 source/is/helpcontent2/source/text/shared.po  |   16 +-
 source/is/helpcontent2/source/text/shared/00.po   |   12 +-
 source/is/helpcontent2/source/text/shared/01.po   |6 -
 source/is/helpcontent2/source/text/shared/02.po   |   22 +--
 source/is/helpcontent2/source/text/shared/04.po   |   12 +-
 source/is/helpcontent2/source/text/shared/05.po   |   11 +
 source/is/helpcontent2/source/text/shared/autopi.po   |6 -
 source/is/helpcontent2/source/text/shared/guide.po|   35 ++
 source/is/helpcontent2/source/text/shared/optionen.po |   28 ++--
 source/is/helpcontent2/source/text/simpress/00.po |   36 +++---
 source/is/helpcontent2/source/text/simpress/01.po |8 -
 source/is/helpcontent2/source/text/simpress/02.po |   25 ++--
 source/is/helpcontent2/source/text/simpress/guide.po  |   13 +-
 source/is/helpcontent2/source/text/smath/01.po|   57 +
 source/is/officecfg/registry/data/org/openoffice/Office/UI.po |   10 -
 source/lt/officecfg/registry/data/org/openoffice/Office/UI.po |   10 -
 source/lt/xmlsecurity/uiconfig/ui.po  |   12 +-
 55 files changed, 455 insertions(+), 456 deletions(-)

New commits:
commit 8d4265a78c399ea8c881fc3897231f21f3877c1d
Author: Christian Lohmaier 
Date:   Tue Nov 24 18:35:20 2015 +0100

update translations for 4.4.7 rc2

and force-fix errors using pocheck

Change-Id: I9f338eff9a6b541b7ca5fa0db95fc550d7c1badd

diff --git a/source/de/helpcontent2/source/text/schart/01.po 
b/source/de/helpcontent2/source/text/schart/01.po
index d1946d8..408526d 100644
--- a/source/de/helpcontent2/source/text/schart/01.po
+++ b/source/de/helpcontent2/source/text/schart/01.po
@@ -4,17 +4,17 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
 "POT-Creation-Date: 2014-11-18 11:24+0100\n"
-"PO-Revision-Date: 2015-01-29 13:53+\n"
-"Last-Translator: Christian \n"

[Libreoffice-bugs] [Bug 94786] I am unable to refresh or auto refresh Pivot table in Libre office 5.0.2, could you please help me on this.

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94786

--- Comment #5 from raal  ---
Created attachment 120769
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120769=edit
printscreen

Hello,this is not a bug. Change the source to: $Sheet1.$A$1:$C$9

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94786] I am unable to refresh or auto refresh Pivot table in Libre office 5.0.2, could you please help me on this.

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94786

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95629] CSV "Save as..." format is wrong when exporting from XLSB with a final \r in a cell value

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95629

Eike Rathke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Hardware|x86-64 (AMD64)  |All
Version|4.3.3.2 release |Inherited From OOo
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |
 Ever confirmed|0   |1
 OS|Linux (All) |All

--- Comment #16 from Eike Rathke  ---
The .xlsb import doesn't create an EditCell as would be necessary for a
multi-line cell. The problem would not occur if 0x0A line feed instead of 0x0D
carriage return was used.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94570] STATUSBAR: Word and character count not reported for non-ODT files until altered

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94570

raal  changed:

   What|Removed |Added

 CC||vilen.lo...@gmail.com

--- Comment #10 from raal  ---
*** Bug 96033 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'private/matus/4-1-bookmarks' - 0 commits -

2015-11-24 Thread Unknown
Rebased ref, commits from common ancestor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Branch 'libreoffice-4-4-7' - source/de source/es source/hu source/is source/lt

2015-11-24 Thread Christian Lohmaier
 source/de/helpcontent2/source/text/schart/01.po   |   10 -
 source/de/helpcontent2/source/text/shared/01.po   |   10 -
 source/de/helpcontent2/source/text/shared/optionen.po |6 -
 source/de/sfx2/source/doc.po  |   10 -
 source/de/svx/source/dialog.po|   16 +-
 source/es/helpcontent2/source/text/sbasic/guide.po|   12 +-
 source/es/helpcontent2/source/text/sbasic/shared.po   |8 -
 source/es/helpcontent2/source/text/sbasic/shared/01.po|   10 -
 source/es/helpcontent2/source/text/scalc/01.po|   36 +++---
 source/es/helpcontent2/source/text/scalc/04.po|   10 -
 source/es/helpcontent2/source/text/scalc/guide.po |   28 ++--
 source/es/helpcontent2/source/text/schart/01.po   |   20 +--
 source/es/helpcontent2/source/text/sdraw/guide.po |   20 +--
 source/es/helpcontent2/source/text/shared/00.po   |   10 -
 source/es/helpcontent2/source/text/shared/01.po   |   30 ++---
 source/es/helpcontent2/source/text/shared/02.po   |   10 -
 source/es/helpcontent2/source/text/shared/05.po   |   10 -
 source/es/helpcontent2/source/text/shared/autopi.po   |   12 +-
 source/es/helpcontent2/source/text/shared/guide.po|   22 +--
 source/es/helpcontent2/source/text/shared/optionen.po |   18 +--
 source/es/helpcontent2/source/text/simpress/02.po |   10 -
 source/es/helpcontent2/source/text/simpress/guide.po  |6 -
 source/es/helpcontent2/source/text/smath/01.po|   46 +++
 source/es/helpcontent2/source/text/swriter/guide.po   |8 -
 source/es/officecfg/registry/data/org/openoffice/Office/UI.po |   12 +-
 source/es/svx/source/svdraw.po|   12 +-
 source/es/sw/source/ui/utlui.po   |6 -
 source/es/swext/mediawiki/help.po |6 -
 source/es/wizards/source/formwizard.po|8 -
 source/hu/officecfg/registry/data/org/openoffice/Office.po|   10 -
 source/hu/officecfg/registry/data/org/openoffice/Office/UI.po |   12 --
 source/hu/sd/source/ui/app.po |   12 +-
 source/hu/sw/uiconfig/swriter/ui.po   |   11 -
 source/hu/uui/uiconfig/ui.po  |   11 -
 source/is/helpcontent2/source/text/scalc/01.po|   58 +-
 source/is/helpcontent2/source/text/scalc/02.po|   11 +
 source/is/helpcontent2/source/text/scalc/guide.po |   18 +--
 source/is/helpcontent2/source/text/schart/01.po   |   27 ++--
 source/is/helpcontent2/source/text/shared.po  |   16 +-
 source/is/helpcontent2/source/text/shared/00.po   |   12 +-
 source/is/helpcontent2/source/text/shared/01.po   |6 -
 source/is/helpcontent2/source/text/shared/02.po   |   22 +--
 source/is/helpcontent2/source/text/shared/04.po   |   12 +-
 source/is/helpcontent2/source/text/shared/05.po   |   11 +
 source/is/helpcontent2/source/text/shared/autopi.po   |6 -
 source/is/helpcontent2/source/text/shared/guide.po|   35 ++
 source/is/helpcontent2/source/text/shared/optionen.po |   28 ++--
 source/is/helpcontent2/source/text/simpress/00.po |   36 +++---
 source/is/helpcontent2/source/text/simpress/01.po |8 -
 source/is/helpcontent2/source/text/simpress/02.po |   25 ++--
 source/is/helpcontent2/source/text/simpress/guide.po  |   13 +-
 source/is/helpcontent2/source/text/smath/01.po|   57 +
 source/is/officecfg/registry/data/org/openoffice/Office/UI.po |   10 -
 source/lt/officecfg/registry/data/org/openoffice/Office/UI.po |   10 -
 source/lt/xmlsecurity/uiconfig/ui.po  |   12 +-
 55 files changed, 455 insertions(+), 456 deletions(-)

New commits:
commit ea807242c95e0ef863a00fc7142bbcb3138dc8cc
Author: Christian Lohmaier 
Date:   Tue Nov 24 18:35:20 2015 +0100

update translations for 4.4.7 rc2

and force-fix errors using pocheck

Change-Id: I9f338eff9a6b541b7ca5fa0db95fc550d7c1badd
(cherry picked from commit 8d4265a78c399ea8c881fc3897231f21f3877c1d)

diff --git a/source/de/helpcontent2/source/text/schart/01.po 
b/source/de/helpcontent2/source/text/schart/01.po
index d1946d8..408526d 100644
--- a/source/de/helpcontent2/source/text/schart/01.po
+++ b/source/de/helpcontent2/source/text/schart/01.po
@@ -4,17 +4,17 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice_status=UNCONFIRMED=UI\n;
 "POT-Creation-Date: 2014-11-18 11:24+0100\n"
-"PO-Revision-Date: 2015-01-29 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-7' - translations

2015-11-24 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 49048b31c266426ee65d79ac920c06b6feb4b162
Author: Christian Lohmaier 
Date:   Tue Nov 24 18:35:20 2015 +0100

Updated core
Project: translations  ea807242c95e0ef863a00fc7142bbcb3138dc8cc

update translations for 4.4.7 rc2

and force-fix errors using pocheck

Change-Id: I9f338eff9a6b541b7ca5fa0db95fc550d7c1badd
(cherry picked from commit 8d4265a78c399ea8c881fc3897231f21f3877c1d)

diff --git a/translations b/translations
index a4206c0..ea80724 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit a4206c0a13c285557948d93532b77f172aae6a85
+Subproject commit ea807242c95e0ef863a00fc7142bbcb3138dc8cc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - bd/d653f4a27644fcbf93047d82185e0cc50eef7a

2015-11-24 Thread Caolán McNamara
 bd/d653f4a27644fcbf93047d82185e0cc50eef7a |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 9d892b25246abc7a052e5775ecaa3af9ff83e3e9
Author: Caolán McNamara 
Date:   Tue Nov 24 20:29:08 2015 +

Notes added by 'git notes add'

diff --git a/bd/d653f4a27644fcbf93047d82185e0cc50eef7a 
b/bd/d653f4a27644fcbf93047d82185e0cc50eef7a
new file mode 100644
index 000..cad98a3
--- /dev/null
+++ b/bd/d653f4a27644fcbf93047d82185e0cc50eef7a
@@ -0,0 +1 @@
+prefer: c04fde0063276e3d5a6de3e077c1c822ed1ad25e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-11-24 Thread Stephan Bergmann
 basebmp/source/bitmapdevice.cxx |   23 ---
 1 file changed, 23 deletions(-)

New commits:
commit 994d80fd53bc264cef92017dba5cbab1241e5a5b
Author: Stephan Bergmann 
Date:   Tue Nov 24 22:58:35 2015 +0100

loplugin:unreffun

Change-Id: Ib53eb3da4810202ad60349566cdef74be89418c8

diff --git a/basebmp/source/bitmapdevice.cxx b/basebmp/source/bitmapdevice.cxx
index 01bfe25..a50f0df 100644
--- a/basebmp/source/bitmapdevice.cxx
+++ b/basebmp/source/bitmapdevice.cxx
@@ -1901,29 +1901,6 @@ BitmapDeviceSharedPtr createRenderer(
   pDamage);
 }
 
-
-// TODO(Q3): consolidate with canvas/canvastools.hxx! Best move this
-// to o3tl or sal/bithacks.hxx ...
-
-/** Compute the next highest power of 2 of a 32-bit value
-
-Code devised by Sean Anderson, in good ole HAKMEM
-tradition.
-
-@return 1 << (lg(x - 1) + 1)
-*/
-inline sal_uInt32 nextPow2( sal_uInt32 x )
-{
---x;
-x |= x >> 1;
-x |= x >> 2;
-x |= x >> 4;
-x |= x >> 8;
-x |= x >> 16;
-
-return ++x;
-}
-
 namespace
 {
 BitmapDeviceSharedPtr createBitmapDeviceImplInner( const basegfx::B2IVector&   
   rSize,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96047] Rename “Display Mode” to “Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

Óvári  changed:

   What|Removed |Added

 Blocks||95983

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95983] [META] Bugs related to the new display mode selector in Impress

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95983

Óvári  changed:

   What|Removed |Added

 Depends on||96047

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96047] New: Rename “Display Mode” to “Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

Bug ID: 96047
   Summary: Rename “Display Mode” to “Layout”
   Product: LibreOffice
   Version: 5.1.0.0.alpha1
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovar...@gmail.com

Display Mode: The term display mode refers to the characteristics of a computer
display, in particular the maximum number of colors and the maximum image
resolution (in pixels horizontally by pixels vertically). There are several
display modes that can be found in personal computer (PC) systems today.
http://whatis.techtarget.com/definition/display-modes

Layout: The way in which the parts of something are arranged or laid out.
http://google.com/

Suggestion to rename “Display Mode” to “Layout”

Blocks: bug 95983

Thank you

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 36/7050e0c21a3eee92735758db6e8fc35975f09c

2015-11-24 Thread Caolán McNamara
 36/7050e0c21a3eee92735758db6e8fc35975f09c |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 4835a234d962fc79f6a8b513df1eae9b301f0004
Author: Caolán McNamara 
Date:   Tue Nov 24 20:25:58 2015 +

Notes added by 'git notes add'

diff --git a/36/7050e0c21a3eee92735758db6e8fc35975f09c 
b/36/7050e0c21a3eee92735758db6e8fc35975f09c
new file mode 100644
index 000..6b945ee
--- /dev/null
+++ b/36/7050e0c21a3eee92735758db6e8fc35975f09c
@@ -0,0 +1 @@
+prefer: 2e96061e6d796110ea74513b71aee560ac01cd57
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96047] Rename “Display Mode” to “Display Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

Joel Madero  changed:

   What|Removed |Added

   Priority|medium  |lowest
 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|Impress |ux-advise
 Ever confirmed|0   |1
 Whiteboard||needsDevEval
   Severity|normal  |trivial

--- Comment #2 from Joel Madero  ---
A decision for UX to make.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94570] STATUSBAR: Word and character count not reported for non-ODT files until altered

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94570

spender93  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |samourai_ange...@hotmail.fr
   |desktop.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - d8/0fc3deff6b5ddcb89c1c95f05d651e5373393c

2015-11-24 Thread Caolán McNamara
 d8/0fc3deff6b5ddcb89c1c95f05d651e5373393c |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 49860e8a996988b6e0fd7e5537160a7f44dc502c
Author: Caolán McNamara 
Date:   Tue Nov 24 20:28:25 2015 +

Notes added by 'git notes add'

diff --git a/d8/0fc3deff6b5ddcb89c1c95f05d651e5373393c 
b/d8/0fc3deff6b5ddcb89c1c95f05d651e5373393c
new file mode 100644
index 000..10762e9
--- /dev/null
+++ b/d8/0fc3deff6b5ddcb89c1c95f05d651e5373393c
@@ -0,0 +1 @@
+prefer: 14940227849e792ce161633a87adf687b2bf9140
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 71/657602fc3411275b4f9f1c68e9dea274de064e

2015-11-24 Thread Caolán McNamara
 71/657602fc3411275b4f9f1c68e9dea274de064e |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 2fd1f9944f50f4ec66480b4a0e35686c2efa1bdd
Author: Caolán McNamara 
Date:   Tue Nov 24 20:27:40 2015 +

Notes added by 'git notes add'

diff --git a/71/657602fc3411275b4f9f1c68e9dea274de064e 
b/71/657602fc3411275b4f9f1c68e9dea274de064e
new file mode 100644
index 000..cfd374b
--- /dev/null
+++ b/71/657602fc3411275b4f9f1c68e9dea274de064e
@@ -0,0 +1 @@
+prefer: 9fda4ee058d07d5909fdd0b39bb63527954e9b8a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96047] Rename “Display Mode” to “Display Layout”

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96047

Óvári  changed:

   What|Removed |Added

Summary|Rename “Display Mode” to|Rename “Display Mode” to
   |“Layout”|“Display Layout”

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: [Libreoffice-qa] Reminder: QA Meeting on Wednesday

2015-11-24 Thread Joel Madero
Hi Pedro,


> It is impossible for me to join at the 13:00 but I would like to leave two
> questions:

That's unfortunate, we should talk about moving the time and/or finding
some other way to get dedicated people like yourself on live chat during
meeting.
>
> Isn't 16% of Regressions something that TDF should be worried about? 
I'm not sure what "worried about" really means. If a major issue was
resolved and the side effect is a minor regression, not so much. If
instead there are a ton of minor fixes that have created crashers, more
of an issue. I'd need a lot more information to adequately judge the
problem.
>
> How can QA (Quality Assurance) and TDF motivate the Devs to worry about the
> consistency of the program?

From QA perspective it's not our job to judge or dictate how developers
work. They are volunteers, and they should be respected like volunteers.
What we can do is the same that we could always do:
1) Narrow down the version where the problem came to be;
2) Bibisect/bisect -- CRUCIAL
3) Appropriately tag whiteboard
4) Appropriately deal with severity/priority.

Beyond that, it's out of our control and stressing about how developer
volunteers spend their time is not in anyone's best interestin
particular if we're falling short on our side (specifically bibisecting).

Finally, the only other advise I would give is raising the worst (and
*fully* triaged) regressions up to Robinson so that he can bring them up
during ESC. This is particularly useful when we can identify the
specific person who accidentally caused the regression and try to see if
they can fix it quickly.

Before demanding a lot of other's time, I personally would prefer we do
our job as good as possible.


Best,
Joel

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 96049] New: FILESAVE: Spreadsheets corrupted on XLSX roundtrip (TablreRef?)

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96049

Bug ID: 96049
   Summary: FILESAVE: Spreadsheets corrupted on XLSX roundtrip
(TablreRef?)
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 120773
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120773=edit
Screenshot of the Error

I have noticed that recent builds of LibreOffice generate invalid OOXML Excel
files that cannot be opened by Excel 2010.

Steps to reproduce:
1.In a recent build of LO open attachment 81708
2.Save
3.Open in the saved file with Excel
4.Repeat steps 1-3 with a Calc <= 5.0
Files saved with Calc  > 5.0 will display the following mes in Excel:
“Excel found unreadable content in ‘’. Do you want to recover the
content? 
If you click Yes 
“Excel was unable to open the file by repairing” -> “Replaced Part:
/xl/worksheets/sheet1.xml part with XML error.  Load error. Line 2, column 0.”
The file will be empty.

I binary bisected this down to: 
http://cgit.freedesktop.org/libreoffice/core/log/?qt=range=5191fcb11688ef8f4ec312293e57e151762c6952..cf9fbdb379e2935677a73ced513d7faf855c299c

Since this only appears to affect my files with structured references, it is
likely due to one of the TablreRef: commits in that range.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96050] New: Symbol (U+2192) Is Not Correctly Positioned

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96050

Bug ID: 96050
   Summary: Symbol (U+2192) Is Not Correctly Positioned
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jmadero@gmail.com

Created attachment 120774
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120774=edit
Arrow Placement

Bodhi Moksha Linux
LibreOffice 5.0.3 (probably inherited from...)

Steps:
1. Enable autocorrect;
2. Type a --> W --> Z

Observed:
The --> are replaced with arrows (U+2192) but they are too low. Zoom way in and
you can see that they aren't centered on the characters, not only that, you can
see when the auto correct happens that the symbol is noticeably below where the
previous --> was located.

Expected: Centered placement.

See attached also.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 61228] TABLE: Function summe() does not sum up but returns last item

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61228

--- Comment #12 from Commit Notification 
 ---
Mike Kaganski committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=a15b9b44d933ef06efbc231d66b79815ba69ceff

tdf#61228: formatting and commenting

It will be available in 5.1.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96050] Symbol (U+2192) Is Not Correctly Positioned

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96050

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |NOTABUG

--- Comment #1 from V Stuart Foote  ---
@Joel, *

I think that is just where the glyph has been styled.

Grab a copy of BableMap if on Windows, great tool for walking unicode pages. 

If you compare Liberation Serif to Carlito, Dejavu Serif, even Linux Libertine
Display--you'll see it is just the typographic design of the Liberation font
that is visually unappealing.

Make a different font selection if you need the U+2190 arrows page in mixed
text.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96050] Symbol (U+2192) Is Not Correctly Positioned

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96050

Joel Madero  changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #2 from Joel Madero  ---
Great information. Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96051] New: FILESAVE: Roundtrip any PPTX file with Shapes creates invalid OOXML

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96051

Bug ID: 96051
   Summary: FILESAVE: Roundtrip any PPTX file with Shapes creates
invalid OOXML
   Product: LibreOffice
   Version: 4.4.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 120775
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120775=edit
Original with just a Rectangle

Any OOXML presentation with shapes will be corrupted on roundtrip with Impress
>= 4.4. 

Steps to reproduce:
1. In PowerPoint create a presentation.
2. Insert shape
3. Save
4. Open in Impress <= 4.3
5. Save
6. Open in PowerPoint
7. Repeat 4-7 with Impress > 4.3

With Impress 4.4 and newer, PowerPoint reports that it "Found a problem with
the content and can attempt a repair."

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96051] FILESAVE: Roundtrip any PPTX file with Shapes creates invalid OOXML

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96051

--- Comment #1 from Luke  ---
Created attachment 120776
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120776=edit
Correctly roundtripped with 4.3

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96051] FILESAVE: Roundtrip any PPTX file with Shapes creates invalid OOXML

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96051

--- Comment #2 from Luke  ---
Created attachment 120777
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120777=edit
Error when roundtripped with 5.1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96051] FILESAVE: Roundtrip any PPTX file with Shapes creates invalid OOXML

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96051

Luke  changed:

   What|Removed |Added

   Keywords||regression

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 92272] SLIDESHOW: slide color inversion during transitions

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92272

--- Comment #14 from Tor Lillqvist  ---
The patch *is* for Windows. This is a Windows-only bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96052] New: FILEOPEN: "No" Symbol Shape Incorrectly Imported

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96052

Bug ID: 96052
   Summary: FILEOPEN: "No" Symbol Shape Incorrectly Imported
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

Created attachment 120778
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120778=edit
Example with "No" Symbol

The OOXML shape "No" Symbol is incorrectly imported. 

Steps to reproduce:
1. In any MSO app, Insert -> Shape -> "No" Symbol
2. Save
3. Open in LibreOffice

Both Writer and Impress incorrectly import this shape.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96052] FILEOPEN: "No" Symbol Shape Incorrectly Imported

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96052

--- Comment #1 from Luke  ---
Created attachment 120779
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120779=edit
Native "No" Symbol also Exported Incorrectly

Save this file as PPTX. Reopen, and it not how the shape changed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: sw/inc writerfilter/source

2015-11-24 Thread Miklos Vajna
 sw/inc/doc.hxx|2 +-
 writerfilter/source/dmapper/SdtHelper.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ebcc23d2c8cf570cfefb34e81b029c854327b338
Author: Miklos Vajna 
Date:   Wed Nov 25 08:42:26 2015 +0100

Indentation fixes

Change-Id: I82678b037aff5409e54bc50744b1b4b2c8d4d83b

diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index 66376b8..be104eb 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -355,7 +355,7 @@ private:
 
 sal_Int32   mReferenceCount;
 
-   bool mbDtor  : 1;/**< TRUE: is in SwDoc DTOR.
+bool mbDtor  : 1;/**< TRUE: is in SwDoc DTOR.
and unfortunately temorarily 
also in
SwSwgReader::InLayout() when 
flawed
frames need deletion. */
diff --git a/writerfilter/source/dmapper/SdtHelper.cxx 
b/writerfilter/source/dmapper/SdtHelper.cxx
index b5eabb9..12cce7bf 100644
--- a/writerfilter/source/dmapper/SdtHelper.cxx
+++ b/writerfilter/source/dmapper/SdtHelper.cxx
@@ -80,7 +80,7 @@ void SdtHelper::createDropDownControl()
 uno::Reference xPropertySet(xControlModel, 
uno::UNO_QUERY);
 xPropertySet->setPropertyValue("DefaultText", uno::makeAny(aDefaultText));
 xPropertySet->setPropertyValue("Dropdown", uno::makeAny(sal_True));
-xPropertySet->setPropertyValue("StringItemList", uno::makeAny( 
comphelper::containerToSequence(m_aDropDownItems) ));
+xPropertySet->setPropertyValue("StringItemList", 
uno::makeAny(comphelper::containerToSequence(m_aDropDownItems)));
 
 createControlShape(lcl_getOptimalWidth(m_rDM_Impl.GetStyleSheetTable(), 
aDefaultText, m_aDropDownItems), xControlModel);
 m_aDropDownItems.clear();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 78703] SLIDESHOW: fading slide transitions start with a white 'flash'

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78703

roumanet  changed:

   What|Removed |Added

 CC||go...@free.fr

--- Comment #21 from roumanet  ---
Created attachment 120780
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120780=edit
some transitions impacted by the color's bug

I've tested some of transitions and record a little movie (see attachement)

I'm running on Win10 family 64bits, with Intel+Radeon videocard (HP4740s
notebook)
I've tested with 5.0.(1 to 3) and with Libreoffice 5.1.0 alpha release
(november, 24th)
Version: 5.1.0.0.alpha1 (x64)
Build ID: 0b48731919433e46e4fda7e5a5ca27c08c28b981
Locale : fr-FR (fr_FR)

As you'll see, forms and texts colors changes while transition occurs and get
back at the end of effect.
Not all transitions are impacted but the most important one (Fade smoothly)
cause problem (especially when showing educational curses to my students or
when trying to record animation for education purpose)

Graphic card detail : AMD Radeon HD 7650M

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2015-11-24 Thread Robinson Tryon
 extras/source/autocorr/lang/bg/DocumentList.xml|2 
 extras/source/autocorr/lang/ca/DocumentList.xml|5 
 extras/source/autocorr/lang/cs/DocumentList.xml|2 
 extras/source/autocorr/lang/da/DocumentList.xml|2 
 extras/source/autocorr/lang/en-AU/DocumentList.xml |2 
 extras/source/autocorr/lang/en-US/DocumentList.xml |2 
 extras/source/autocorr/lang/en-ZA/DocumentList.xml |2 
 extras/source/autocorr/lang/es/DocumentList.xml|2 
 extras/source/autocorr/lang/fa/DocumentList.xml|2 
 extras/source/autocorr/lang/fi/DocumentList.xml|2 
 extras/source/autocorr/lang/fr/DocumentList.xml|2 
 extras/source/autocorr/lang/hr/DocumentList.xml|2 
 extras/source/autocorr/lang/hu/DocumentList.xml|2 
 extras/source/autocorr/lang/is/DocumentList.xml|2 
 extras/source/autocorr/lang/it/DocumentList.xml|2 
 extras/source/autocorr/lang/ja/DocumentList.xml|2 
 extras/source/autocorr/lang/ko/DocumentList.xml|2 
 extras/source/autocorr/lang/lt/DocumentList.xml|2 
 extras/source/autocorr/lang/mn/DocumentList.xml|2 
 extras/source/autocorr/lang/nl/DocumentList.xml|2 
 extras/source/autocorr/lang/pl/DocumentList.xml|2 
 extras/source/autocorr/lang/pt-BR/DocumentList.xml |2 
 extras/source/autocorr/lang/pt/DocumentList.xml|2 
 extras/source/autocorr/lang/ro/DocumentList.xml|2 
 extras/source/autocorr/lang/ru/DocumentList.xml|2 
 extras/source/autocorr/lang/sk/DocumentList.xml|2 
 extras/source/autocorr/lang/sl/DocumentList.xml|   26 +--
 extras/source/autocorr/lang/sv/DocumentList.xml|8 -
 extras/source/autocorr/lang/tr/DocumentList.xml|2 
 extras/source/autocorr/lang/vi/DocumentList.xml|2 
 extras/source/autocorr/lang/zh-CN/DocumentList.xml |  159 -
 extras/source/autocorr/lang/zh-TW/DocumentList.xml |2 
 32 files changed, 206 insertions(+), 48 deletions(-)

New commits:
commit b630ec5ff0b8eb358ade2d8a55293940679f7cdf
Author: Robinson Tryon 
Date:   Wed Nov 25 02:40:53 2015 -0500

update emoji autocorrect files from po-files

Change-Id: I1c58da68525ccfe8726a07e40dd8c7db89616580

diff --git a/extras/source/autocorr/lang/bg/DocumentList.xml 
b/extras/source/autocorr/lang/bg/DocumentList.xml
index 4f23539..37c30f6 100644
--- a/extras/source/autocorr/lang/bg/DocumentList.xml
+++ b/extras/source/autocorr/lang/bg/DocumentList.xml
@@ -97,10 +97,10 @@
   
   
   
+  
   
   
   
-  
   
   
   
diff --git a/extras/source/autocorr/lang/ca/DocumentList.xml 
b/extras/source/autocorr/lang/ca/DocumentList.xml
index cba1a8e..a301d1e 100644
--- a/extras/source/autocorr/lang/ca/DocumentList.xml
+++ b/extras/source/autocorr/lang/ca/DocumentList.xml
@@ -358,6 +358,7 @@
   
   
   
+  
   
   
   
@@ -515,10 +516,10 @@
   
   
   
+  
   
   
   
-  
   
   
   
@@ -597,7 +598,7 @@
   
   
   
-  
+  
   
   
   
diff --git a/extras/source/autocorr/lang/cs/DocumentList.xml 
b/extras/source/autocorr/lang/cs/DocumentList.xml
index 05c5493..7d04405 100644
--- a/extras/source/autocorr/lang/cs/DocumentList.xml
+++ b/extras/source/autocorr/lang/cs/DocumentList.xml
@@ -707,7 +707,7 @@
   
   
   
-  
+  
   
   
   
diff --git a/extras/source/autocorr/lang/da/DocumentList.xml 
b/extras/source/autocorr/lang/da/DocumentList.xml
index 00c1eea..cb0998a 100644
--- a/extras/source/autocorr/lang/da/DocumentList.xml
+++ b/extras/source/autocorr/lang/da/DocumentList.xml
@@ -782,7 +782,7 @@
   
   
   
-  
+  
   
   
   
diff --git a/extras/source/autocorr/lang/en-AU/DocumentList.xml 
b/extras/source/autocorr/lang/en-AU/DocumentList.xml
index deb296c..f58f114 100644
--- a/extras/source/autocorr/lang/en-AU/DocumentList.xml
+++ b/extras/source/autocorr/lang/en-AU/DocumentList.xml
@@ -979,10 +979,10 @@
   
   
   
+  
   
   
   
-  
   
   
   
diff --git a/extras/source/autocorr/lang/en-US/DocumentList.xml 
b/extras/source/autocorr/lang/en-US/DocumentList.xml
index 4d14a6e..2c829be 100644
--- a/extras/source/autocorr/lang/en-US/DocumentList.xml
+++ b/extras/source/autocorr/lang/en-US/DocumentList.xml
@@ -984,10 +984,10 @@
   
   
   
+  
   
   
   
-  
   
   
   
diff --git a/extras/source/autocorr/lang/en-ZA/DocumentList.xml 
b/extras/source/autocorr/lang/en-ZA/DocumentList.xml
index 1f279eb..c40638e 100644
--- a/extras/source/autocorr/lang/en-ZA/DocumentList.xml
+++ b/extras/source/autocorr/lang/en-ZA/DocumentList.xml
@@ -827,9 +827,9 @@
   
   
   
+  
   
   
-  
   
   
 
diff --git a/extras/source/autocorr/lang/es/DocumentList.xml 
b/extras/source/autocorr/lang/es/DocumentList.xml
index ede331d..ad5075d 100644
--- a/extras/source/autocorr/lang/es/DocumentList.xml
+++ b/extras/source/autocorr/lang/es/DocumentList.xml
@@ -676,7 +676,7 @@
   
   
   
-  
+  
   
   
   
diff --git a/extras/source/autocorr/lang/fa/DocumentList.xml 
b/extras/source/autocorr/lang/fa/DocumentList.xml
index 

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

2015-11-24 Thread Mike Kaganski
 sw/source/core/bastyp/calc.cxx |   18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

New commits:
commit a15b9b44d933ef06efbc231d66b79815ba69ceff
Author: Mike Kaganski 
Date:   Wed Nov 25 13:15:13 2015 +1000

tdf#61228: formatting and commenting

Change-Id: Ic5d1090722945dce338973e9e3091546ed792057
Reviewed-on: https://gerrit.libreoffice.org/20160
Tested-by: Jenkins 
Reviewed-by: Mike Kaganski 

diff --git a/sw/source/core/bastyp/calc.cxx b/sw/source/core/bastyp/calc.cxx
index 8b12d87..7864657 100644
--- a/sw/source/core/bastyp/calc.cxx
+++ b/sw/source/core/bastyp/calc.cxx
@@ -1317,18 +1317,20 @@ SwSbxValue SwCalc::Prim()
 break;
 
 case CALC_NAME:
-switch(SwCalcOper nOper = GetToken())
+switch(SwCalcOper eOper = GetToken())
 {
 case CALC_ASSIGN:
-{
-SwCalcExp* n = VarInsert(aVarName);
-GetToken();
-nErg = n->nValue = Expr();
-}
-break;
+{
+SwCalcExp* n = VarInsert(aVarName);
+GetToken();
+nErg = n->nValue = Expr();
+}
+break;
 default:
 nErg = VarLook(aVarName)->nValue;
-if (nErg.IsVoidValue() && (nOper == CALC_LP))
+// Explicitly disallow unknown function names (followed by 
"("),
+// allow unknown variable names (equal to zero)
+if (nErg.IsVoidValue() && (eOper == CALC_LP))
 eError = CALC_SYNTAX;
 else
 bChkPow = true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: writerperfect/inc writerperfect/qa writerperfect/source

2015-11-24 Thread Noel Grandin
 writerperfect/inc/DirectoryStream.hxx |6 
 writerperfect/inc/DocumentHandler.hxx |4 
 writerperfect/inc/ImportFilter.hxx|   38 +--
 writerperfect/inc/WPXSvInputStream.hxx|2 
 writerperfect/qa/unit/WpftImportTestBase.hxx  |   10 
 writerperfect/source/calc/MSWorksCalcImportFilter.hxx |   22 -
 writerperfect/source/calc/MWAWCalcImportFilter.hxx|   22 -
 writerperfect/source/calc/NumbersImportFilter.hxx |   22 -
 writerperfect/source/common/DirectoryStream.cxx   |6 
 writerperfect/source/common/WPXSvInputStream.cxx  |   10 
 writerperfect/source/draw/CDRImportFilter.hxx |   22 -
 writerperfect/source/draw/CMXImportFilter.hxx |   22 -
 writerperfect/source/draw/FreehandImportFilter.hxx|   22 -
 writerperfect/source/draw/MSPUBImportFilter.hxx   |   22 -
 writerperfect/source/draw/MWAWDrawImportFilter.hxx|   22 -
 writerperfect/source/draw/PageMakerImportFilter.hxx   |   22 -
 writerperfect/source/draw/VisioImportFilter.hxx   |   22 -
 writerperfect/source/draw/WPGImportFilter.hxx |   22 -
 writerperfect/source/impress/KeynoteImportFilter.cxx  |4 
 writerperfect/source/impress/KeynoteImportFilter.hxx  |   28 +-
 writerperfect/source/impress/MWAWPresentationImportFilter.hxx |   22 -
 writerperfect/source/writer/AbiWordImportFilter.hxx   |   22 -
 writerperfect/source/writer/EBookImportFilter.hxx |   22 -
 writerperfect/source/writer/MSWorksImportFilter.hxx   |   22 -
 writerperfect/source/writer/MWAWImportFilter.hxx  |   22 -
 writerperfect/source/writer/PagesImportFilter.hxx |   22 -
 writerperfect/source/writer/WordPerfectImportFilter.cxx   |   18 -
 writerperfect/source/writer/WordPerfectImportFilter.hxx   |  116 +-
 28 files changed, 308 insertions(+), 308 deletions(-)

New commits:
commit 651649233f3132f67aaf074ba416e186eb8fb49d
Author: Noel Grandin 
Date:   Tue Nov 24 14:00:36 2015 +0200

com::sun::star->css in writerperfect/

Change-Id: I3b1f51d3a02b999476d12e680f2f76a11ac6b3b9
Reviewed-on: https://gerrit.libreoffice.org/20146
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/writerperfect/inc/DirectoryStream.hxx 
b/writerperfect/inc/DirectoryStream.hxx
index 6107af8..99933c9 100644
--- a/writerperfect/inc/DirectoryStream.hxx
+++ b/writerperfect/inc/DirectoryStream.hxx
@@ -37,11 +37,11 @@ class WRITERPERFECT_DLLPUBLIC DirectoryStream : public 
librevenge::RVNGInputStre
 struct Impl;
 
 public:
-explicit DirectoryStream(const 
com::sun::star::uno::Reference );
+explicit DirectoryStream(const css::uno::Reference 
);
 virtual ~DirectoryStream();
 
-static DirectoryStream *createForParent(const 
com::sun::star::uno::Reference );
-static bool isDirectory(const 
com::sun::star::uno::Reference );
+static DirectoryStream *createForParent(const 
css::uno::Reference );
+static bool isDirectory(const css::uno::Reference 
);
 
 virtual bool isStructured() override;
 virtual unsigned subStreamCount() override;
diff --git a/writerperfect/inc/DocumentHandler.hxx 
b/writerperfect/inc/DocumentHandler.hxx
index 26436f4..00666f9 100644
--- a/writerperfect/inc/DocumentHandler.hxx
+++ b/writerperfect/inc/DocumentHandler.hxx
@@ -49,7 +49,7 @@ namespace writerperfect
 class WRITERPERFECT_DLLPUBLIC DocumentHandler: public OdfDocumentHandler
 {
 public:
-DocumentHandler(com::sun::star::uno::Reference < 
com::sun::star::xml::sax::XDocumentHandler > );
+DocumentHandler(css::uno::Reference < css::xml::sax::XDocumentHandler > 
);
 void startDocument() override;
 void endDocument() override;
 void startElement(const char *psName, const librevenge::RVNGPropertyList 
) override;
@@ -57,7 +57,7 @@ public:
 void characters(const librevenge::RVNGString ) override;
 
 private:
-com::sun::star::uno::Reference < 
com::sun::star::xml::sax::XDocumentHandler > mxHandler;
+css::uno::Reference < css::xml::sax::XDocumentHandler > mxHandler;
 };
 
 }
diff --git a/writerperfect/inc/ImportFilter.hxx 
b/writerperfect/inc/ImportFilter.hxx
index 673261b..da4badf 100644
--- a/writerperfect/inc/ImportFilter.hxx
+++ b/writerperfect/inc/ImportFilter.hxx
@@ -48,14 +48,14 @@ namespace detail
 template
 class ImportFilterImpl : public cppu::WeakImplHelper
 <
-com::sun::star::document::XFilter,
-com::sun::star::document::XImporter,
-com::sun::star::document::XExtendedFilterDetection,
-com::sun::star::lang::XInitialization
+css::document::XFilter,
+css::document::XImporter,
+css::document::XExtendedFilterDetection,
+css::lang::XInitialization
 >
 {
 public:
-

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

2015-11-24 Thread Noel Grandin
 xmlhelp/source/cxxhelp/inc/tvfactory.hxx|   42 +-
 xmlhelp/source/cxxhelp/inc/tvread.hxx   |  144 +++
 xmlhelp/source/cxxhelp/provider/bufferedinputstream.hxx |   70 +--
 xmlhelp/source/cxxhelp/provider/content.hxx |   46 --
 xmlhelp/source/cxxhelp/provider/databases.cxx   |2 
 xmlhelp/source/cxxhelp/provider/databases.hxx   |  128 +++---
 xmlhelp/source/cxxhelp/provider/db.hxx  |6 
 xmlhelp/source/cxxhelp/provider/inputstream.hxx |   64 +--
 xmlhelp/source/cxxhelp/provider/provider.hxx|   45 +-
 xmlhelp/source/cxxhelp/provider/resultset.hxx   |   11 
 xmlhelp/source/cxxhelp/provider/resultsetbase.hxx   |  328 
 xmlhelp/source/cxxhelp/provider/resultsetforquery.hxx   |8 
 xmlhelp/source/cxxhelp/provider/resultsetforroot.hxx|8 
 xmlhelp/source/cxxhelp/provider/urlparameter.cxx|6 
 xmlhelp/source/cxxhelp/provider/urlparameter.hxx|   16 
 xmlhelp/source/treeview/tvread.cxx  |   10 
 16 files changed, 462 insertions(+), 472 deletions(-)

New commits:
commit fa452b54a5d2b31d5bc57617323f0f1092d0794f
Author: Noel Grandin 
Date:   Tue Nov 24 14:17:16 2015 +0200

com::sun::star->css in xmlhelp

Change-Id: Iaa57a071f8f0e6945d24f019cb4c06e02d066e0a
Reviewed-on: https://gerrit.libreoffice.org/20147
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx 
b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx
index 12e28d9..8bd8551 100644
--- a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx
+++ b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx
@@ -39,7 +39,7 @@ class TVFactory: public cppu::WeakImplHelper <
 {
 public:
 
-TVFactory( const com::sun::star::uno::Reference< 
com::sun::star::uno::XComponentContext >& xContext );
+TVFactory( const css::uno::Reference< css::uno::XComponentContext >& 
xContext );
 
 virtual ~TVFactory();
 
@@ -47,57 +47,57 @@ class TVFactory: public cppu::WeakImplHelper <
 virtual OUString SAL_CALL
 getImplementationName(
 void )
-throw( com::sun::star::uno::RuntimeException, std::exception ) 
override;
+throw( css::uno::RuntimeException, std::exception ) override;
 
 virtual sal_Bool SAL_CALL
 supportsService(
 const OUString& ServiceName )
-throw(com::sun::star::uno::RuntimeException, std::exception ) 
override;
+throw(css::uno::RuntimeException, std::exception ) override;
 
-virtual com::sun::star::uno::Sequence< OUString > SAL_CALL
+virtual css::uno::Sequence< OUString > SAL_CALL
 getSupportedServiceNames(
 void )
-throw( com::sun::star::uno::RuntimeException, std::exception ) 
override;
+throw( css::uno::RuntimeException, std::exception ) override;
 
 // XMultiServiceFactory
 
-virtual com::sun::star::uno::Reference< 
com::sun::star::uno::XInterface > SAL_CALL
+virtual css::uno::Reference< css::uno::XInterface > SAL_CALL
 createInstance(
 const OUString& aServiceSpecifier )
-throw( com::sun::star::uno::Exception,
-   com::sun::star::uno::RuntimeException, std::exception ) 
override;
+throw( css::uno::Exception,
+   css::uno::RuntimeException, std::exception ) override;
 
-virtual com::sun::star::uno::Reference< 
com::sun::star::uno::XInterface > SAL_CALL
+virtual css::uno::Reference< css::uno::XInterface > SAL_CALL
 createInstanceWithArguments(
 const OUString& ServiceSpecifier,
-const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& 
Arguments )
-throw( com::sun::star::uno::Exception,
-   com::sun::star::uno::RuntimeException, std::exception) 
override;
+const css::uno::Sequence< css::uno::Any >& Arguments )
+throw( css::uno::Exception,
+   css::uno::RuntimeException, std::exception) override;
 
-virtual com::sun::star::uno::Sequence< OUString > SAL_CALL
+virtual css::uno::Sequence< OUString > SAL_CALL
 getAvailableServiceNames( )
-throw( com::sun::star::uno::RuntimeException, std::exception ) 
override;
+throw( css::uno::RuntimeException, std::exception ) override;
 
 // Other
 
 static OUString SAL_CALL getImplementationName_static();
 
-static com::sun::star::uno::Sequence< OUString > SAL_CALL 
getSupportedServiceNames_static();
+static css::uno::Sequence< OUString > SAL_CALL 
getSupportedServiceNames_static();
 
-static com::sun::star::uno::Reference< 
com::sun::star::lang::XSingleServiceFactory > SAL_CALL
+static css::uno::Reference< css::lang::XSingleServiceFactory > SAL_CALL
  

[Libreoffice-commits] core.git: 5 commits - basctl/source compilerplugins/clang cui/source idl/source include/package include/registry include/sfx2 include/sot include/svl include/svtools include/svx

2015-11-24 Thread Noel Grandin
 basctl/source/dlged/dlgedobj.cxx|4 -
 compilerplugins/clang/unusedfields.py   |3 
 cui/source/tabpages/tpbitmap.cxx|2 
 idl/source/objects/slot.cxx |5 -
 include/package/Deflater.hxx|1 
 include/registry/registry.hxx   |3 
 include/sfx2/msg.hxx|   13 +--
 include/sfx2/objsh.hxx  |1 
 include/sfx2/tabdlg.hxx |5 -
 include/sfx2/tbxctrl.hxx|4 -
 include/sfx2/templatedefaultview.hxx|1 
 include/sfx2/viewfrm.hxx|   17 -
 include/sot/object.hxx  |1 
 include/svl/filerec.hxx |2 
 include/svtools/ruler.hxx   |2 
 include/svtools/treelistbox.hxx |1 
 include/svx/EnhancedCustomShape2d.hxx   |7 --
 include/svx/dlgctrl.hxx |3 
 include/svx/fmgridif.hxx|1 
 include/svx/fmshell.hxx |1 
 include/svx/gallery1.hxx|1 
 include/svx/galtheme.hxx|   14 
 include/svx/msdffdef.hxx|   15 
 include/svx/srchdlg.hxx |1 
 include/svx/svdetc.hxx  |4 -
 include/svx/svdmodel.hxx|2 
 include/svx/svdotext.hxx|4 -
 include/svx/svdouno.hxx |6 -
 include/svx/svdsnpv.hxx |7 --
 include/svx/svdundo.hxx |2 
 include/svx/svdview.hxx |2 
 include/toolkit/awt/vclxdevice.hxx  |1 
 include/tools/inetmime.hxx  |   22 --
 include/unotools/atom.hxx   |6 -
 package/source/zipapi/Deflater.cxx  |1 
 registry/source/registry.cxx|   94 
 reportdesign/source/core/sdr/RptObject.cxx  |4 -
 sc/inc/scabstdlg.hxx|6 -
 sc/source/ui/attrdlg/attrdlg.cxx|4 -
 sc/source/ui/attrdlg/scdlgfact.cxx  |   28 +++-
 sc/source/ui/attrdlg/scdlgfact.hxx  |6 -
 sc/source/ui/docshell/docsh4.cxx|2 
 sc/source/ui/inc/attrdlg.hxx|3 
 sc/source/ui/inc/hfedtdlg.hxx   |   22 +++---
 sc/source/ui/pagedlg/hfedtdlg.cxx   |   45 ++---
 sc/source/ui/pagedlg/tphf.cxx   |2 
 sc/source/ui/view/tabvwsha.cxx  |2 
 sd/source/ui/dlg/PaneShells.cxx |4 -
 sfx2/source/control/templatedefaultview.cxx |1 
 sfx2/source/dialog/dinfdlg.cxx  |2 
 sfx2/source/dialog/tabdlg.cxx   |   26 ---
 sfx2/source/doc/objxtor.cxx |2 
 sot/source/base/object.cxx  |1 
 svtools/source/control/ruler.cxx|   22 +++---
 svx/source/dialog/dlgctrl.cxx   |5 -
 svx/source/dialog/srchdlg.cxx   |1 
 svx/source/fmcomp/fmgridif.cxx  |1 
 svx/source/form/fmshell.cxx |1 
 svx/source/gallery2/gallery1.cxx|3 
 svx/source/svdraw/svdetc.cxx|6 -
 svx/source/svdraw/svdmodel.cxx  |5 -
 svx/source/svdraw/svdotxln.cxx  |9 +-
 svx/source/svdraw/svdouno.cxx   |   11 +--
 svx/source/svdraw/svdsnpv.cxx   |5 -
 svx/source/svdraw/svdundo.cxx   |2 
 svx/source/svdraw/svdview.cxx   |2 
 svx/source/toolbars/extrusionbar.cxx|2 
 svx/source/toolbars/fontworkbar.cxx |2 
 sw/source/ui/chrdlg/chardlg.cxx |2 
 sw/source/ui/frmdlg/frmdlg.cxx  |   11 +--
 sw/source/ui/table/tabledlg.cxx |2 
 toolkit/source/awt/vclxdevice.cxx   |3 
 tools/source/inet/inetmime.cxx  |3 
 73 files changed, 112 insertions(+), 405 deletions(-)

New commits:
commit 631b67952909a73ba1851417bd2edbe02ad7be5a
Author: Noel Grandin 
Date:   Wed Nov 25 08:24:32 2015 +0200

loplugin:unusedfields in include/toolkit,include/tools

Change-Id: I22966b66b1b8e4dff2e565de456f21a668f33f28

diff --git a/include/toolkit/awt/vclxdevice.hxx 
b/include/toolkit/awt/vclxdevice.hxx
index b5f9844..4d54ec5 100644
--- a/include/toolkit/awt/vclxdevice.hxx
+++ b/include/toolkit/awt/vclxdevice.hxx
@@ -52,7 +52,6 @@ private:
 VclPtrmpOutputDevice;
 
 public:
-void*   pDummy;
 sal_uInt32  nFlags;
 
 public:
diff --git a/include/tools/inetmime.hxx b/include/tools/inetmime.hxx
index 73d9975..819e3b0 100644
--- a/include/tools/inetmime.hxx
+++ b/include/tools/inetmime.hxx
@@ -33,23 +33,6 @@ class INetMIMEOutputSink;
 
 struct INetContentTypeParameter
 {
-/** The name of the attribute, in US-ASCII encoding and converted to lower
-

[Libreoffice-commits] core.git: translations

2015-11-24 Thread Robinson Tryon
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c99f75ca4535af54a23c375f843c8ece971f8589
Author: Robinson Tryon 
Date:   Tue Nov 24 05:47:40 2015 -0500

Updated core
Project: translations  9b7a6f9619c88ddee34c8cd1623eccdd7d4a4769

Update translations for master and force-fix errors using pocheck

Change-Id: Ia185c1d9ef3b66189ec6b1ab08795fa5f4aaca49

diff --git a/translations b/translations
index 2c02b59..9b7a6f9 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 2c02b59bd90e8fb0f8ab7b2449bf885f7c41f6e7
+Subproject commit 9b7a6f9619c88ddee34c8cd1623eccdd7d4a4769
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89525] Impress does not export slides bullets to PPTX correctly

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89525

Commit Notification  changed:

   What|Removed |Added

 Whiteboard| target:5.1.0 target:5.0.3  | target:5.1.0 target:5.0.3
   |target:4.4.8|target:4.4.8 target:4.4.7

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89525] Impress does not export slides bullets to PPTX correctly

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89525

--- Comment #9 from Commit Notification 
 ---
Mark Hung committed a patch related to this issue.
It has been pushed to "libreoffice-4-4-7":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=c54c54d9b95e15dc7179eb0399c242295b1dbf26=libreoffice-4-4-7

Fix tdf#77881,tdf#80520,tdf#89525 bulllets lost issue.

It will be available in 4.4.7.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77881] FILESAVE: Bullets are lost when saving in OOxml (.pptx or .ppsx)

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77881

--- Comment #42 from Commit Notification 
 ---
Mark Hung committed a patch related to this issue.
It has been pushed to "libreoffice-4-4-7":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=c54c54d9b95e15dc7179eb0399c242295b1dbf26=libreoffice-4-4-7

Fix tdf#77881,tdf#80520,tdf#89525 bulllets lost issue.

It will be available in 4.4.7.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89525] Impress does not export slides bullets to PPTX correctly

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89525

Adolfo Jayme  changed:

   What|Removed |Added

 Whiteboard| target:5.1.0 target:5.0.3  |target:5.1.0 target:5.0.3
   |target:4.4.8 target:4.4.7   |target:4.4.7

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-7' - oox/source

2015-11-24 Thread Mark Hung
 oox/source/export/drawingml.cxx |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit c54c54d9b95e15dc7179eb0399c242295b1dbf26
Author: Mark Hung 
Date:   Mon Jul 27 23:53:18 2015 +0800

Fix tdf#77881,tdf#80520,tdf#89525 bulllets lost issue.

Replace bullet char before write out font description
since it may be altered if bullet font has been changed
(i.e. StarSymbol to WingDings ).

Change-Id: I0461cc0a5e4628b36177602bba7ed7f74a0751eb
Reviewed-on: https://gerrit.libreoffice.org/17376
Tested-by: Jenkins 
Reviewed-by: Norbert Thiebaud 
Reviewed-on: https://gerrit.libreoffice.org/18318
Reviewed-by: Mark Hung 
Reviewed-on: https://gerrit.libreoffice.org/19938
Reviewed-by: Christian Lohmaier 
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index efe6323..6b593a8 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1721,10 +1721,14 @@ void DrawingML::WriteParagraphNumbering( Reference< 
XPropertySet > rXPropSet, sa
 mpFS->singleElementNS( XML_a, XML_buSzPct,
XML_val, IS( std::max( (sal_Int32)25000, 
std::min( (sal_Int32)40, 1000*( (sal_Int32)nBulletRelSize ) ) ) ), FSEND );
 if( bHasFontDesc )
+{
+if ( SVX_NUM_CHAR_SPECIAL == nNumberingType )
+aBulletChar = SubstituteBullet( aBulletChar, aFontDesc );
 mpFS->singleElementNS( XML_a, XML_buFont,
XML_typeface, 
aFontDesc.Name.toUtf8().getStr(),
XML_charset, (aFontDesc.CharSet == 
awt::CharSet::SYMBOL) ? "2" : NULL,
FSEND );
+}
 
 OUString pAutoNumType = GetAutoNumType( nNumberingType, bSDot, 
bPBehind, bPBoth );
 
@@ -1736,7 +1740,6 @@ void DrawingML::WriteParagraphNumbering( Reference< 
XPropertySet > rXPropSet, sa
 }
 else
 {
-aBulletChar = SubstituteBullet( aBulletChar, aFontDesc );
 mpFS->singleElementNS(XML_a, XML_buChar, XML_char, USS( OUString( 
aBulletChar ) ), FSEND);
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 77881] FILESAVE: Bullets are lost when saving in OOxml (.pptx or .ppsx)

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77881

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:5.1.0 target:5.0.3   |target:5.1.0 target:5.0.3
   |target:4.4.8|target:4.4.8 target:4.4.7

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77881] FILESAVE: Bullets are lost when saving in OOxml (.pptx or .ppsx)

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77881

Adolfo Jayme  changed:

   What|Removed |Added

 Whiteboard|target:5.1.0 target:5.0.3   |target:5.1.0 target:5.0.3
   |target:4.4.8 target:4.4.7   |target:4.4.7

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2015-11-24 Thread Miklos Vajna
 sc/source/core/tool/scmatrix.cxx |  120 +++
 1 file changed, 60 insertions(+), 60 deletions(-)

New commits:
commit 9015e72459b5112b0ebddf61c42cae7e8c35f734
Author: Miklos Vajna 
Date:   Tue Nov 24 18:29:36 2015 +0100

sc: -Werror=unused-parameter

Change-Id: I1d3ad22b3dd304ff7384de1e07af88cd63bd28cd

diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx
index cb242ca..649e86d 100644
--- a/sc/source/core/tool/scmatrix.cxx
+++ b/sc/source/core/tool/scmatrix.cxx
@@ -2852,17 +2852,17 @@ ScMatrix* ScVectorRefMatrix::Clone() const
 throw std::runtime_error("ScVectorRefMatrix::Clone() called");
 }
 
-void ScVectorRefMatrix::Resize(SCSIZE nC, SCSIZE nR)
+void ScVectorRefMatrix::Resize(SCSIZE /*nC*/, SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::Resize called");
 }
 
-void ScVectorRefMatrix::Resize(SCSIZE nC, SCSIZE nR, double fVal)
+void ScVectorRefMatrix::Resize(SCSIZE /*nC*/, SCSIZE /*nR*/, double /*fVal*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::Resize called");
 }
 
-ScMatrix* ScVectorRefMatrix::CloneAndExtend(SCSIZE nNewCols, SCSIZE nNewRows) 
const
+ScMatrix* ScVectorRefMatrix::CloneAndExtend(SCSIZE /*nNewCols*/, SCSIZE 
/*nNewRows*/) const
 {
 throw std::runtime_error("ScVectorRefMatrix::CloneAndExtend called");
 }
@@ -2883,182 +2883,182 @@ SCSIZE ScVectorRefMatrix::GetElementCount() const
 throw std::runtime_error("ScVectorRefMatrix::GetElementCount called");
 }
 
-bool ScVectorRefMatrix::ValidColRow(SCSIZE nC, SCSIZE nR) const
+bool ScVectorRefMatrix::ValidColRow(SCSIZE /*nC*/, SCSIZE /*nR*/) const
 {
 throw std::runtime_error("ScVectorRefMatrix::ValidColRow called");
 }
 
-bool ScVectorRefMatrix::ValidColRowReplicated(SCSIZE & rC, SCSIZE & rR) const
+bool ScVectorRefMatrix::ValidColRowReplicated(SCSIZE & /*rC*/, SCSIZE & 
/*rR*/) const
 {
 throw std::runtime_error("ScVectorRefMatrix::ValidColRowReplicated 
called");
 }
 
-bool ScVectorRefMatrix::ValidColRowOrReplicated(SCSIZE & rC, SCSIZE & rR) const
+bool ScVectorRefMatrix::ValidColRowOrReplicated(SCSIZE & /*rC*/, SCSIZE & 
/*rR*/) const
 {
 throw std::runtime_error("ScVectorRefMatrix::ValidColRowOrReplicated 
called");
 }
 
-void ScVectorRefMatrix::PutDouble(double fVal, SCSIZE nC, SCSIZE nR)
+void ScVectorRefMatrix::PutDouble(double /*fVal*/, SCSIZE /*nC*/, SCSIZE 
/*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutDouble called");
 }
 
-void ScVectorRefMatrix::PutDouble(double fVal, SCSIZE nIndex)
+void ScVectorRefMatrix::PutDouble(double /*fVal*/, SCSIZE /*nIndex*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutDouble called");
 }
 
-void ScVectorRefMatrix::PutDouble(const double* pArray, size_t nLen, SCSIZE 
nC, SCSIZE nR)
+void ScVectorRefMatrix::PutDouble(const double* /*pArray*/, size_t /*nLen*/, 
SCSIZE /*nC*/, SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutDouble called");
 }
 
-void ScVectorRefMatrix::PutString(const svl::SharedString& rStr, SCSIZE nC, 
SCSIZE nR)
+void ScVectorRefMatrix::PutString(const svl::SharedString& /*rStr*/, SCSIZE 
/*nC*/, SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutString called");
 }
 
-void ScVectorRefMatrix::PutString(const svl::SharedString& rStr, SCSIZE nIndex)
+void ScVectorRefMatrix::PutString(const svl::SharedString& /*rStr*/, SCSIZE 
/*nIndex*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutString called");
 }
 
-void ScVectorRefMatrix::PutString(const svl::SharedString* pArray, size_t 
nLen, SCSIZE nC, SCSIZE nR)
+void ScVectorRefMatrix::PutString(const svl::SharedString* /*pArray*/, size_t 
/*nLen*/, SCSIZE /*nC*/, SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutString called");
 }
 
-void ScVectorRefMatrix::PutEmpty(SCSIZE nC, SCSIZE nR)
+void ScVectorRefMatrix::PutEmpty(SCSIZE /*nC*/, SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutEmpty called");
 }
 
-void ScVectorRefMatrix::PutEmptyPath(SCSIZE nC, SCSIZE nR)
+void ScVectorRefMatrix::PutEmptyPath(SCSIZE /*nC*/, SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutEmptyPath called");
 }
 
-void ScVectorRefMatrix::PutError(sal_uInt16 nErrorCode, SCSIZE nC, SCSIZE nR)
+void ScVectorRefMatrix::PutError(sal_uInt16 /*nErrorCode*/, SCSIZE /*nC*/, 
SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutError called");
 }
 
-void ScVectorRefMatrix::PutBoolean(bool bVal, SCSIZE nC, SCSIZE nR)
+void ScVectorRefMatrix::PutBoolean(bool /*bVal*/, SCSIZE /*nC*/, SCSIZE /*nR*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::PutBoolean called");
 }
 
-void ScVectorRefMatrix::FillDouble(double fVal, SCSIZE nC1, SCSIZE nR1, SCSIZE 
nC2, SCSIZE nR2)
+void ScVectorRefMatrix::FillDouble(double /*fVal*/, SCSIZE /*nC1*/, SCSIZE 
/*nR1*/, SCSIZE /*nC2*/, SCSIZE /*nR2*/)
 {
 throw std::runtime_error("ScVectorRefMatrix::FillDouble called");
 }
 

[Libreoffice-bugs] [Bug 96042] [HELP UI] tab index in help browser does not show pages

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96042

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
Confirmed, noticed this yesterday on Windows TB62 builds of master with en-US
help file installed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96037] Libreoffice is very slow

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96037

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
Install current release 5.0.3.2 and retest.

If still an issue we would need complete OS and system details.

As well as exact steps to produce... idealy providing test case sample files to
work against.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: 3 commits - sc/source svl/source

2015-11-24 Thread Eike Rathke
 sc/source/core/tool/interpr4.cxx |2 +-
 svl/source/numbers/zformat.cxx   |   11 +--
 2 files changed, 6 insertions(+), 7 deletions(-)

New commits:
commit f9588062dd22771395ed8e076f009deb23a0092f
Author: Eike Rathke 
Date:   Tue Nov 24 18:34:20 2015 +0100

never push an error instead of the ScJumpMatrixToken

Change-Id: I52854241a9ab87153635b27cb6a66ef4269b2e76

diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index d841422..d6b9694 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -1501,7 +1501,7 @@ bool ScInterpreter::ConvertMatrixParameters()
 GetTokenMatrixMap().insert( ScTokenMatrixMap::value_type( pCur,
 xNew));
 }
-PushTempToken( xNew.get());
+PushTempTokenWithoutError( xNew.get());
 // set continuation point of path for main code line
 aCode.Jump( nNext, nNext);
 return true;
commit d90142c9466a00e2638467d71fcc7d22e49814c3
Author: Eike Rathke 
Date:   Tue Nov 24 18:09:40 2015 +0100

nitpick, use 'b' prefix

Change-Id: I9a0d92dee7cebecfb7b204628738f716b901771a

diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx
index 19dd531..9c5bbf9 100644
--- a/svl/source/numbers/zformat.cxx
+++ b/svl/source/numbers/zformat.cxx
@@ -4785,7 +4785,7 @@ OUString SvNumberformat::GetMappedFormatstring( const 
NfKeywordTable& rKeywords,
 nSem++;
 }
 OUString aPrefix;
-bool LCIDInserted = false;
+bool bLCIDInserted = false;
 
 if ( !bDefaults )
 {
@@ -4907,7 +4907,7 @@ OUString SvNumberformat::GetMappedFormatstring( const 
NfKeywordTable& rKeywords,
 }
 j = j+2;
 }
-LCIDInserted = true;
+bLCIDInserted = true;
 break;
 default:
 aStr.append( pStr[j] );
@@ -4919,7 +4919,7 @@ OUString SvNumberformat::GetMappedFormatstring( const 
NfKeywordTable& rKeywords,
 if (rNum.IsSet() && rNum.GetNatNum() == 1 &&
 rKeywords[NF_KEY_THAI_T] == "T" &&
 MsLangId::getRealLanguage( rNum.GetLang()) ==
-LANGUAGE_THAI && !LCIDInserted )
+LANGUAGE_THAI && !bLCIDInserted )
 {
 
 aStr.insert( 0, "[$-D00041E]" ); // number in Thai digit
commit 59dddbc45a782e5119c21412c6e71cc2d8d0d326
Author: Eike Rathke 
Date:   Tue Nov 24 18:08:15 2015 +0100

nitpick, reduce to one string insertion

Change-Id: I546ae14d49bb64fb069a4a5d7dc7685e823ea3c3

diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx
index 690e045..19dd531 100644
--- a/svl/source/numbers/zformat.cxx
+++ b/svl/source/numbers/zformat.cxx
@@ -4895,16 +4895,15 @@ OUString SvNumberformat::GetMappedFormatstring( const 
NfKeywordTable& rKeywords,
 case NF_SYMBOLTYPE_CALDEL :
 if ( pStr[j+1] == "buddhist" )
 {
-aStr.insert( 0, "[$-" );
 if ( rNum.IsSet() && rNum.GetNatNum() == 1 &&
  MsLangId::getRealLanguage( rNum.GetLang() ) ==
  LANGUAGE_THAI )
 {
-aStr.insert( 3, "D07041E]" ); // date in Thai 
digit, Buddhist era
+aStr.insert( 0, "[$-D07041E]" ); // date in 
Thai digit, Buddhist era
 }
 else
 {
-aStr.insert( 3, "107041E]" ); // date in 
Arabic digit, Buddhist era
+aStr.insert( 0, "[$-107041E]" ); // date in 
Arabic digit, Buddhist era
 }
 j = j+2;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: basebmp/source basebmp/test include/basebmp sw/qa vcl/headless vcl/qa vcl/unx

2015-11-24 Thread Caolán McNamara
 basebmp/source/bitmapdevice.cxx  |   25 +++--
 basebmp/test/basictest.cxx   |   29 -
 basebmp/test/bmpmasktest.cxx |   24 +++-
 basebmp/test/bmptest.cxx |   12 
 basebmp/test/cliptest.cxx|   12 
 basebmp/test/filltest.cxx|6 ++
 basebmp/test/linetest.cxx|   12 
 basebmp/test/masktest.cxx|9 +++--
 basebmp/test/polytest.cxx|6 ++
 include/basebmp/bitmapdevice.hxx |9 +++--
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |2 +-
 vcl/headless/svpbmp.cxx  |6 ++
 vcl/headless/svpframe.cxx|3 +--
 vcl/headless/svpgdi.cxx  |5 +++--
 vcl/headless/svpvd.cxx   |7 +++
 vcl/qa/cppunit/BitmapTest.cxx|   15 +--
 vcl/unx/gtk/gtksalframe.cxx  |6 +++---
 17 files changed, 66 insertions(+), 122 deletions(-)

New commits:
commit 9b52b8999be86e5c6e5f5901b2640b16f08a2323
Author: Caolán McNamara 
Date:   Tue Nov 24 13:39:42 2015 +

Resolves: tdf#95962 incorrect scanline stride

we were reusing the stride of the surface we were cloning,
but the new surface has a different underlying size.

remove the custom stride argument and just change our stride
calculation to use the same scheme that cairo and GDI uses, which
remove another platform/drawing-system variable

Change-Id: I257dac9757b121642e9ccfde7db0911edc9f3fb1
Reviewed-on: https://gerrit.libreoffice.org/20149
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/basebmp/source/bitmapdevice.cxx b/basebmp/source/bitmapdevice.cxx
index 4260edb..01bfe25 100644
--- a/basebmp/source/bitmapdevice.cxx
+++ b/basebmp/source/bitmapdevice.cxx
@@ -1929,7 +1929,6 @@ namespace
 BitmapDeviceSharedPtr createBitmapDeviceImplInner( const basegfx::B2IVector&   
   rSize,
bool
   bTopDown,
Format  
   nScanlineFormat,
-   sal_Int32   
   nScanlineStride,
boost::shared_array< 
sal_uInt8 >   pMem,
PaletteMemorySharedVector   
   pPal,
const basegfx::B2IBox*  
   pSubset,
@@ -1950,6 +1949,8 @@ BitmapDeviceSharedPtr createBitmapDeviceImplInner( const 
basegfx::B2IVector&
 return BitmapDeviceSharedPtr();
 }
 
+sal_Int32 nScanlineStride = getBitmapDeviceStrideForWidth(nScanlineFormat, 
rSize.getX());
+
 // factor in bottom-up scanline order case
 nScanlineStride *= bTopDown ? 1 : -1;
 
@@ -2112,14 +2113,13 @@ BitmapDeviceSharedPtr createBitmapDeviceImplInner( 
const basegfx::B2IVector&
 BitmapDeviceSharedPtr createBitmapDeviceImpl( const basegfx::B2IVector&
  rSize,
   bool 
  bTopDown,
   Format   
  nScanlineFormat,
-  sal_Int32
  nScanlineStride,
   boost::shared_array< sal_uInt8 > 
  pMem,
   PaletteMemorySharedVector
  pPal,
   const basegfx::B2IBox*   
  pSubset,
   const 
IBitmapDeviceDamageTrackerSharedPtr& rDamage,
   bool bBlack = true)
 {
-BitmapDeviceSharedPtr result( createBitmapDeviceImplInner( rSize, 
bTopDown, nScanlineFormat, nScanlineStride, pMem, pPal, pSubset, rDamage, 
bBlack ) );
+BitmapDeviceSharedPtr result( createBitmapDeviceImplInner( rSize, 
bTopDown, nScanlineFormat, pMem, pPal, pSubset, rDamage, bBlack ) );
 
 #ifdef SAL_LOG_INFO
 std::ostringstream subset;
@@ -2145,24 +2145,20 @@ sal_Int32 getBitmapDeviceStrideForWidth(Format 
nScanlineFormat, sal_Int32 nWidth
 // round up to full 8 bit, divide by 8
 sal_Int32 nScanlineStride = (nWidth*nBitsPerPixel + 7) >> 3;
 
-// rounded up to next full power-of-two number of bytes
-const sal_uInt32 bytesPerPixel = nextPow2(
-(bitsPerPixel[nScanlineFormat] + 7) >> 3);
+// pixman (cairo) and GDI (windows) pad to multiples of 32bits
+// so do the same to be easily 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - external/libmwaw

2015-11-24 Thread David Tardon
 
external/libmwaw/0001-if-ptr-to-member-var.-is-defined-ensure-the-class-is.patch.1
 |   56 ++
 external/libmwaw/UnpackedTarball_libmwaw.mk
|4 
 2 files changed, 60 insertions(+)

New commits:
commit 2dab392c3b72b728245d96ab82f6f591af980efe
Author: David Tardon 
Date:   Tue Nov 24 15:33:20 2015 +0100

fix c++ snafu with msvc

(cherry picked from commit b1e5983f04095346bee48dc3b413c0ae28789c27)

Change-Id: I493b79e70fb8003ce215e602f9b4ce92afa50150
Reviewed-on: https://gerrit.libreoffice.org/20156
Reviewed-by: Michael Stahl 
Tested-by: Jenkins 

diff --git 
a/external/libmwaw/0001-if-ptr-to-member-var.-is-defined-ensure-the-class-is.patch.1
 
b/external/libmwaw/0001-if-ptr-to-member-var.-is-defined-ensure-the-class-is.patch.1
new file mode 100644
index 000..b9ed2e1
--- /dev/null
+++ 
b/external/libmwaw/0001-if-ptr-to-member-var.-is-defined-ensure-the-class-is.patch.1
@@ -0,0 +1,56 @@
+From 2d178367e7029a98fb555a084c1c946c8826ff06 Mon Sep 17 00:00:00 2001
+From: David Tardon 
+Date: Tue, 24 Nov 2015 15:15:36 +0100
+Subject: [PATCH] if ptr to member var. is defined, ensure the class is
+ complete
+
+... because MSVC represents pointers to member as variable size,
+depending on context (e.g., multiple inheritance). So it can happen that
+the size of the pointer in the header (where the class is only
+forward-declared) differs from the size of the same pointer in an impl.
+file (where the class is complete).
+---
+ src/lib/ClarisWksDocument.hxx | 1 +
+ src/lib/GreatWksDocument.hxx  | 1 +
+ src/lib/MsWksDocument.hxx | 1 +
+ 3 files changed, 3 insertions(+)
+
+diff --git a/src/lib/ClarisWksDocument.hxx b/src/lib/ClarisWksDocument.hxx
+index 2b70860..3003b6a 100644
+--- a/src/lib/ClarisWksDocument.hxx
 b/src/lib/ClarisWksDocument.hxx
+@@ -42,6 +42,7 @@
+ 
+ #include "libmwaw_internal.hxx"
+ 
++#include "MWAWParser.hxx"
+ #include "MWAWPosition.hxx"
+ 
+ #include "ClarisWksStruct.hxx"
+diff --git a/src/lib/GreatWksDocument.hxx b/src/lib/GreatWksDocument.hxx
+index 2e00451..2e13dc2 100644
+--- a/src/lib/GreatWksDocument.hxx
 b/src/lib/GreatWksDocument.hxx
+@@ -41,6 +41,7 @@
+ 
+ #include "MWAWCell.hxx"
+ #include "MWAWDebug.hxx"
++#include "MWAWParser.hxx"
+ 
+ namespace GreatWksDocumentInternal
+ {
+diff --git a/src/lib/MsWksDocument.hxx b/src/lib/MsWksDocument.hxx
+index a212e7f..e96f5dd 100644
+--- a/src/lib/MsWksDocument.hxx
 b/src/lib/MsWksDocument.hxx
+@@ -44,6 +44,7 @@
+ 
+ #include "MWAWDebug.hxx"
+ #include "MWAWCell.hxx"
++#include "MWAWParser.hxx"
+ 
+ namespace MsWksDocumentInternal
+ {
+-- 
+2.5.0
+
diff --git a/external/libmwaw/UnpackedTarball_libmwaw.mk 
b/external/libmwaw/UnpackedTarball_libmwaw.mk
index 7751b38..406af42 100644
--- a/external/libmwaw/UnpackedTarball_libmwaw.mk
+++ b/external/libmwaw/UnpackedTarball_libmwaw.mk
@@ -35,4 +35,8 @@ $(eval $(call gb_UnpackedTarball_add_patches,libmwaw, \
 ))
 endif
 
+$(eval $(call gb_UnpackedTarball_add_patches,libmwaw, \
+   
external/libmwaw/0001-if-ptr-to-member-var.-is-defined-ensure-the-class-is.patch.1
 \
+))
+
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 2c/e7862024ef29d0200c1e077e1ce17364ba7ab2

2015-11-24 Thread Caolán McNamara
 2c/e7862024ef29d0200c1e077e1ce17364ba7ab2 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit eaeb53d024e2c0bbe7c14f2b4eca85507b66f180
Author: Caolán McNamara 
Date:   Tue Nov 24 18:55:11 2015 +

Notes added by 'git notes add'

diff --git a/2c/e7862024ef29d0200c1e077e1ce17364ba7ab2 
b/2c/e7862024ef29d0200c1e077e1ce17364ba7ab2
new file mode 100644
index 000..4f0c088
--- /dev/null
+++ b/2c/e7862024ef29d0200c1e077e1ce17364ba7ab2
@@ -0,0 +1 @@
+prefer: ab88b56072adb0eab7fffb03801515136a1c8c9a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 84/dc0bfe31601898c34355fe99ba6ad78efff8ed

2015-11-24 Thread Caolán McNamara
 84/dc0bfe31601898c34355fe99ba6ad78efff8ed |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 2dc8c48e960aad4c87efdbe124d6f945cb062995
Author: Caolán McNamara 
Date:   Tue Nov 24 18:56:05 2015 +

Notes added by 'git notes add'

diff --git a/84/dc0bfe31601898c34355fe99ba6ad78efff8ed 
b/84/dc0bfe31601898c34355fe99ba6ad78efff8ed
new file mode 100644
index 000..3356b3b
--- /dev/null
+++ b/84/dc0bfe31601898c34355fe99ba6ad78efff8ed
@@ -0,0 +1 @@
+prefer: 4235138c2f16d60b84c1a9c9465c9af0e2a137d6
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95859] Impress and Draw crash if Window is resized below specific size.

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95859

--- Comment #5 from Beluga  ---
You could try getting a debug trace of the crash. You have to install a debug
package first, though.
Here are the instructions:
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96046] New: SVG: Units are converted incorrectly

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96046

Bug ID: 96046
   Summary: SVG: Units are converted incorrectly
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aniste...@gmail.com

Created attachment 120767
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120767=edit
font-size applied to text

More information: http://www.w3.org/TR/SVG/coords.html#Units

Some example attached

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96046] SVG: Units are converted incorrectly

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96046

Xisco Faulí  changed:

   What|Removed |Added

 CC||aniste...@gmail.com

--- Comment #1 from Xisco Faulí  ---
Created attachment 120768
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120768=edit
another sample from W3

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 9 commits - cui/source external_deps.lst more_fonts/fonts more_fonts/prj sal/osl scp2/source sot/source svx/source sw/source vcl/unx xmloff/source

2015-11-24 Thread Pedro Giffuni
 cui/source/options/treeopt.cxx|2 ++
 external_deps.lst |   10 +-
 more_fonts/fonts/ttf_croscore/makefile.mk |4 ++--
 more_fonts/fonts/ttf_dejavu/makefile.mk   |6 +++---
 more_fonts/prj/d.lst  |6 +++---
 sal/osl/unx/file_url.cxx  |4 +++-
 scp2/source/ooo/file_font_ooo.scp |3 ---
 sot/source/sdstor/stgdir.cxx  |2 ++
 svx/source/sidebar/nbdtmg.cxx |2 ++
 sw/source/core/access/accpara.cxx |3 ++-
 vcl/unx/generic/dtrans/X11_selection.cxx  |4 ++--
 xmloff/source/text/txtparai.cxx   |1 +
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx |2 +-
 13 files changed, 28 insertions(+), 21 deletions(-)

New commits:
commit 84dc0bfe31601898c34355fe99ba6ad78efff8ed
Author: Pedro Giffuni 
Date:   Tue Nov 24 15:43:34 2015 +

Update basic fonts:

Use new versions of the Google Croscore and DejaVu fonts.
The Croscore fonts do not carry NeuSymbol anymore but
that is not really an issue since we carry OpenSymbol.

diff --git a/external_deps.lst b/external_deps.lst
index 9c5ac38..2ed03df 100644
--- a/external_deps.lst
+++ b/external_deps.lst
@@ -234,14 +234,14 @@ if (SYSTEM_CURL != YES)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (WITH_CATA_FONTS == YES)
-MD5 = 161462de16e2ca79873bc2b0d2e6c74c
-name = dejavu-fonts-ttf-2.34.tar.bz2
-URL1 = 
http://sourceforge.net/projects/dejavu/files/dejavu/2.34/dejavu-fonts-ttf-2.34.tar.bz2/download
+MD5 = 59eaca5acf5c7c8212e92778e3e01f32
+name = dejavu-fonts-ttf-2.35.tar.bz2
+URL1 = 
http://sourceforge.net/projects/dejavu/files/dejavu/2.35/$(name)/download
 # URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if (WITH_CATA_FONTS==YES)
-MD5 = cfa8bec07bf5b6856dd20f0cb28b3929
-name = croscorefonts-1.23.0.tar.gz
+MD5 = 3c90ac73fd13bd79684d9dc073840328
+name = croscorefonts-1.31.0.tar.bz2
 URL1 = http://gsdview.appspot.com/chromeos-localmirror/distfiles/$(name)
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
diff --git a/more_fonts/fonts/ttf_croscore/makefile.mk 
b/more_fonts/fonts/ttf_croscore/makefile.mk
index 5e6a86b..1f36dc9 100644
--- a/more_fonts/fonts/ttf_croscore/makefile.mk
+++ b/more_fonts/fonts/ttf_croscore/makefile.mk
@@ -37,8 +37,8 @@ TARGET=ttf_croscore
 
 # --- Files 
 
-TARFILE_NAME=croscorefonts-1.23.0
-TARFILE_MD5=cfa8bec07bf5b6856dd20f0cb28b3929
+TARFILE_NAME=croscorefonts-1.31.0
+TARFILE_MD5=3c90ac73fd13bd79684d9dc073840328
 
 PATCH_FILES=
 
diff --git a/more_fonts/fonts/ttf_dejavu/makefile.mk 
b/more_fonts/fonts/ttf_dejavu/makefile.mk
index 1b8f596..970b84d 100644
--- a/more_fonts/fonts/ttf_dejavu/makefile.mk
+++ b/more_fonts/fonts/ttf_dejavu/makefile.mk
@@ -39,9 +39,9 @@ TARGET=ttf_dejavu
 
 # --- Files 
 
-TARFILE_NAME=dejavu-fonts-ttf-2.34
-TARFILE_MD5=161462de16e2ca79873bc2b0d2e6c74c
-TARFILE_ROOTDIR=dejavu-fonts-ttf-2.34
+TARFILE_NAME=dejavu-fonts-ttf-2.35
+TARFILE_MD5=59eaca5acf5c7c8212e92778e3e01f32
+TARFILE_ROOTDIR=dejavu-fonts-ttf-2.35
 
 PATCH_FILES=
 
diff --git a/more_fonts/prj/d.lst b/more_fonts/prj/d.lst
index 802156f..d33c4b5 100644
--- a/more_fonts/prj/d.lst
+++ b/more_fonts/prj/d.lst
@@ -1,8 +1,8 @@
 mkdir: %COMMON_DEST%\pck%_EXT%
 ..\fonts\fc_local.conf %COMMON_DEST%\pck%_EXT%\fc_local.conf
 # TODO: replace explicit versions by wildcard when the build system learns to 
handle them
-..\%__SRC%\misc\build\dejavu-fonts-ttf-2.34\ttf\*.ttf  
%COMMON_DEST%\pck%_EXT%\*.ttf
-..\%__SRC%\misc\build\dejavu-fonts-ttf-2.34\LICENSE
%COMMON_DEST%\pck%_EXT%\LICENSE_dejavu
-..\%__SRC%\misc\build\croscorefonts-1.23.0\*.ttf   
%COMMON_DEST%\pck%_EXT%\*.ttf
+..\%__SRC%\misc\build\dejavu-fonts-ttf-2.35\ttf\*.ttf  
%COMMON_DEST%\pck%_EXT%\*.ttf
+..\%__SRC%\misc\build\dejavu-fonts-ttf-2.35\LICENSE
%COMMON_DEST%\pck%_EXT%\LICENSE_dejavu
+..\%__SRC%\misc\build\croscorefonts-1.31.0\*.ttf   
%COMMON_DEST%\pck%_EXT%\*.ttf
 ..\%__SRC%\misc\build\gentiumbasic-fonts-1.10\*.ttf
%COMMON_DEST%\pck%_EXT%\*.ttf
 ..\%__SRC%\misc\build\gentiumbasic-fonts-1.10\OFL.txt  
%COMMON_DEST%\pck%_EXT%\LICENSE_gentium
diff --git a/scp2/source/ooo/file_font_ooo.scp 
b/scp2/source/ooo/file_font_ooo.scp
index d9a860c..63da849 100644
--- a/scp2/source/ooo/file_font_ooo.scp
+++ b/scp2/source/ooo/file_font_ooo.scp
@@ -99,9 +99,6 @@ STD_FONT_FILE( gid_File_Fnt_Tinos_Bold, Tinos-Bold.ttf, Tinos 
Bold)
 STD_FONT_FILE( gid_File_Fnt_Tinos_Italic, Tinos-Italic.ttf, Tinos Italic)
 STD_FONT_FILE( gid_File_Fnt_Tinos_BoldItalic, Tinos-BoldItalic.ttf, Tinos Bold 
Italic)
 
-// 

[Libreoffice-bugs] [Bug 95956] Mailmerge crash when clicking on select address list button

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95956

--- Comment #8 from Jonathan Ernst  ---
I downgraded to LibreOffice Still on the same machine and everything works
again so this is a regression between 4.4.6 and 5.0.2.2.

All the best.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95956] Mailmerge crash when clicking on select address list button

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95956

Beluga  changed:

   What|Removed |Added

   Keywords||regression

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: 3 commits - sc/inc sc/qa sc/source

2015-11-24 Thread Jan Holesovsky
 sc/inc/calcconfig.hxx   |1 
 sc/inc/scmatrix.hxx |  587 +++
 sc/qa/unit/ucalc.cxx|   16 
 sc/source/core/data/table1.cxx  |2 
 sc/source/core/data/validat.cxx |2 
 sc/source/core/inc/arraysumfunctor.hxx  |1 
 sc/source/core/tool/addincol.cxx|6 
 sc/source/core/tool/calcconfig.cxx  |   11 
 sc/source/core/tool/ddelink.cxx |4 
 sc/source/core/tool/formulagroup.cxx|   80 +--
 sc/source/core/tool/interpr1.cxx|6 
 sc/source/core/tool/interpr5.cxx|   10 
 sc/source/core/tool/jumpmatrix.cxx  |2 
 sc/source/core/tool/rangeseq.cxx|2 
 sc/source/core/tool/scmatrix.cxx|  695 +++-
 sc/source/core/tool/token.cxx   |   18 
 sc/source/filter/excel/tokstack.cxx |2 
 sc/source/filter/excel/xihelper.cxx |2 
 sc/source/filter/excel/xilink.cxx   |2 
 sc/source/filter/inc/xihelper.hxx   |2 
 sc/source/filter/xml/XMLDDELinksContext.cxx |2 
 sc/source/filter/xml/xmlcelli.cxx   |2 
 sc/source/ui/docshell/externalrefmgr.cxx|6 
 23 files changed, 1180 insertions(+), 281 deletions(-)

New commits:
commit a81de86c47322bd6bc59b462eb2f69e0f1185df4
Author: Jan Holesovsky 
Date:   Tue Nov 24 17:13:21 2015 +0100

sc: Implement Software Interpreter subsetting, similarly to openCL one.

And add only the minimum amount of operations we are sure about.

Change-Id: I0dd35968206161e31fcd8bfd0b647329c703e0da

diff --git a/sc/inc/calcconfig.hxx b/sc/inc/calcconfig.hxx
index 4091bda..ec355cf 100644
--- a/sc/inc/calcconfig.hxx
+++ b/sc/inc/calcconfig.hxx
@@ -58,6 +58,7 @@ struct SC_DLLPUBLIC ScCalcConfig
 typedef std::shared_ptr OpCodeSet;
 
 OpCodeSet mpOpenCLSubsetOpCodes;
+OpCodeSet mpSwInterpreterSubsetOpCodes;
 
 ScCalcConfig();
 
diff --git a/sc/source/core/tool/calcconfig.cxx 
b/sc/source/core/tool/calcconfig.cxx
index 20d5530..f285e13 100644
--- a/sc/source/core/tool/calcconfig.cxx
+++ b/sc/source/core/tool/calcconfig.cxx
@@ -86,6 +86,15 @@ void ScCalcConfig::setOpenCLConfigToDefault()
 ocSlope,
 ocSumIfs}));
 
+// opcodes that are known to work well with the software interpreter
+static OpCodeSet pDefaultSwInterpreterSubsetOpCodes(new std::set({
+ocAdd,
+ocSub,
+ocMul,
+ocDiv,
+ocSum,
+ocProduct}));
+
 // Note that these defaults better be kept in sync with those in
 // officecfg/registry/schema/org/openoffice/Office/Calc.xcs.
 // Crazy.
@@ -93,6 +102,7 @@ void ScCalcConfig::setOpenCLConfigToDefault()
 mbOpenCLAutoSelect = true;
 mnOpenCLMinimumFormulaGroupSize = 100;
 mpOpenCLSubsetOpCodes = pDefaultOpenCLSubsetOpCodes;
+mpSwInterpreterSubsetOpCodes = pDefaultSwInterpreterSubsetOpCodes;
 }
 
 void ScCalcConfig::reset()
@@ -127,6 +137,7 @@ bool ScCalcConfig::operator== (const ScCalcConfig& r) const
maOpenCLDevice == r.maOpenCLDevice &&
mnOpenCLMinimumFormulaGroupSize == 
r.mnOpenCLMinimumFormulaGroupSize &&
*mpOpenCLSubsetOpCodes == *r.mpOpenCLSubsetOpCodes &&
+   *mpSwInterpreterSubsetOpCodes == *r.mpSwInterpreterSubsetOpCodes &&
true;
 }
 
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 3f978c4..138e087 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1319,6 +1319,12 @@ void ScTokenArray::CheckToken( const FormulaToken& r )
 return;
 }
 
+if (!ScCalcConfig::isOpenCLEnabled() && 
getenv("SC_ALLOW_SOFTWARE_INTERPRETER") != nullptr && 
ScInterpreter::GetGlobalConfig().mpSwInterpreterSubsetOpCodes->find(eOp) == 
ScInterpreter::GetGlobalConfig().mpSwInterpreterSubsetOpCodes->end())
+{
+meVectorState = FormulaVectorDisabled;
+return;
+}
+
 // We support vectorization for the following opcodes.
 switch (eOp)
 {
@@ -1559,6 +1565,16 @@ void ScTokenArray::CheckToken( const FormulaToken& r )
 meVectorState = FormulaVectorDisabled;
 return;
 }
+
+if (eOp >= SC_OPCODE_START_BIN_OP &&
+eOp <= SC_OPCODE_STOP_UN_OP &&
+!ScCalcConfig::isOpenCLEnabled() &&
+getenv("SC_ALLOW_SOFTWARE_INTERPRETER") != nullptr &&
+
ScInterpreter::GetGlobalConfig().mpSwInterpreterSubsetOpCodes->find(eOp) == 
ScInterpreter::GetGlobalConfig().mpSwInterpreterSubsetOpCodes->end())
+{
+meVectorState = FormulaVectorDisabled;
+return;
+}
 }
 
 bool ScTokenArray::ImplGetReference( ScRange& rRange, const ScAddress& rPos, 
bool bValidOnly ) const
commit 8e148863d9683b8b73b28818d144330a607fb511
Author: Jan Holesovsky 
Date:   Tue Nov 24 10:27:03 2015 +0100


[Libreoffice-commits] core.git: include/vcl vcl/unx

2015-11-24 Thread Michael Meeks
 include/vcl/scheduler.hxx |2 +-
 vcl/unx/gtk/gtkdata.cxx   |5 +
 2 files changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 1bd5e8b73d863cad6e42ea9619fc471a0dd8d14b
Author: Michael Meeks 
Date:   Tue Nov 24 15:32:16 2015 +

vcl: reduce maximum timeout to some sensible range.

This fixes a bug with glib, where prepare of a source with such a
large (max uint64) causes precision & wrap-around problems.
Add assert to avoid recurrence.
Also add a helpful user-visible source name in debug mode.

Change-Id: I9e1eb41af9cc49f8bff88e07f04d4bc4d1877376
Reviewed-on: https://gerrit.libreoffice.org/20152
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx
index 9cd7fb8..be9df9e 100644
--- a/include/vcl/scheduler.hxx
+++ b/include/vcl/scheduler.hxx
@@ -61,7 +61,7 @@ protected:
 
 // These should be constexpr static, when supported.
 static const sal_uInt64 ImmediateTimeoutMs = 1;
-static const sal_uInt64 MaximumTimeoutMs = SAL_MAX_UINT64;
+static const sal_uInt64 MaximumTimeoutMs = 1000 * 60; // 1 minute
 
 static void ImplStartTimer(sal_uInt64 nMS, bool bForce = false);
 
diff --git a/vcl/unx/gtk/gtkdata.cxx b/vcl/unx/gtk/gtkdata.cxx
index d25b036..f65b4e0 100644
--- a/vcl/unx/gtk/gtkdata.cxx
+++ b/vcl/unx/gtk/gtkdata.cxx
@@ -905,6 +905,9 @@ create_sal_gtk_timeout( GtkSalTimer *pTimer )
  /* unused dummy */ g_idle_remove_by_data,
  nullptr, nullptr );
   g_source_attach( pSource, g_main_context_default() );
+#ifdef DBG_UTIL
+  g_source_set_name( pSource, "VCL timeout source" );
+#endif
 
   sal_gtk_timeout_defer( pTSource );
 
@@ -937,6 +940,8 @@ bool GtkSalTimer::Expired()
 
 void GtkSalTimer::Start( sal_uLong nMS )
 {
+// glib is not 64bit safe in this regard.
+assert( nMS <= G_MAXINT );
 m_nTimeoutMS = nMS; // for restarting
 Stop(); // FIXME: ideally re-use an existing m_pTimeout
 m_pTimeout = create_sal_gtk_timeout( this );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96046] SVG: Units are converted incorrectly

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96046

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |aniste...@gmail.com
   |desktop.org |
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95989] EDITING

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95989

--- Comment #11 from Julien Nabet  ---
(In reply to Peter Lemkin from comment #10)
> Yes, so far it has been working. Is there some way to transfer customization
> and extensions, or do I have to rebuild everything from scratch? But why is
> there no thesaurus?

As the link provided indicates:
"
The user profile is the folder where the all user related data (extensions,
custom dictionaries, templates, etc) is kept
"
So it's normal, you don't have any extensions when you rename your LO directory
profile.

Now we know the problem is in this directory.
To go on, I propose you to :
1) rename the brand new LO profile as "user_ok" (because we'll need it for step
4
2) rename registrymodifications.xcu from your old LO profile to
registrymodifications.xcu.bak
3) rename your old LO profile to its original name (so you retrieve all your
customizations, extensions, ...)
4) copy registrymodifications.xcu from "user_ok" to "user"
The goal is to know if the problem is specifically in registrymodifications.xcu
or if it's somewhere else on your LO directory profile.
(see "Resolving corruption in the user profile" part from
https://wiki.documentfoundation.org/UserProfile)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: sfx2/uiconfig

2015-11-24 Thread Adolfo Jayme Barrientos
 sfx2/uiconfig/ui/helpcontrol.ui |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3752616716d9a89f7b41f67323759f5f266ab615
Author: Adolfo Jayme Barrientos 
Date:   Tue Nov 24 11:54:04 2015 -0600

Pad this control a bit

Change-Id: Id05a77b83783c0e12a77bd5e91e595fa0ae29629

diff --git a/sfx2/uiconfig/ui/helpcontrol.ui b/sfx2/uiconfig/ui/helpcontrol.ui
index 50a3818..b358212 100644
--- a/sfx2/uiconfig/ui/helpcontrol.ui
+++ b/sfx2/uiconfig/ui/helpcontrol.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -13,7 +13,7 @@
 False
 True
 True
-0
+6
 vertical
 6
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-qa] Reminder: QA Meeting on Wednesday

2015-11-24 Thread Robinson Tryon
Hi all,
Just a quick reminder that we have our next QA Meeting on Wednesday.

Come say hi in #libreoffice-qa and bring your questions with you!

Cheers,
--R



-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 96045] New: Imported formulas from Excel don't work until you copy paste the exact same formula

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96045

Bug ID: 96045
   Summary: Imported formulas from Excel don't work until you copy
paste the exact same formula
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jonat...@ernstfamily.ch

Created attachment 120766
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120766=edit
Test file

See attached file converted from Excel. 

The strange thing is that copy pasting the #NAME? formulas make them work
again.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96044] After exiting Page Preview main window number is not reset but bumps to #3

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96044

Cor Nouws  changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
Summary|After exiting Page Preview  |After exiting Page Preview
   |main window number is not   |main window number is not
   |reset   |reset but bumps to #3
 Ever confirmed|0   |1
 Whiteboard||bibisectrequest

--- Comment #1 from Cor Nouws  ---
Thanks Pedro.

Confirm this in daily Version: 5.1.0.0.alpha1+
Build ID: f6bc5b79c31225c02e9500d0ced4bd26f998f82b
Threads 2; Ver: 4.2; Render: default;

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96044] After exiting Page Preview main window number is not reset but bumps to #3

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96044

Cor Nouws  changed:

   What|Removed |Added

 OS|Windows (All)   |All

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 36871] Data Validity for Text Length Kinda Broken

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36871

raal  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #10 from raal  ---
Hello Dennis,
tested with Version: 5.1.0.0.alpha1+
Build ID: 32d4c03cba399ada807b8ec113a3928aa9e3ff7b
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2015-11-17_00:57:30
and Version: 5.1.0.0.alpha1+ (x64)
Build ID: 186f365a2c541c51e404b1fa819f35c9152adaf1
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-11-19_23:26:12

Column L - validity: text lenght
12 - 18 characters

Works OK for text and numbers, closing as WFM.

@Scott - set again to status NEW is you still see the errors. Dev version you
can download here: http://dev-builds.libreoffice.org/daily/master/

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 7f/c36af9ba9d413f6cc7cbeecd8ac039bf9e3333

2015-11-24 Thread Caolán McNamara
 7f/c36af9ba9d413f6cc7cbeecd8ac039bf9e |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 8f4045959e4844e9dcea1e73bd95ff3c3f8a8db0
Author: Caolán McNamara 
Date:   Tue Nov 24 18:57:03 2015 +

Notes added by 'git notes add'

diff --git a/7f/c36af9ba9d413f6cc7cbeecd8ac039bf9e 
b/7f/c36af9ba9d413f6cc7cbeecd8ac039bf9e
new file mode 100644
index 000..0e88005
--- /dev/null
+++ b/7f/c36af9ba9d413f6cc7cbeecd8ac039bf9e
@@ -0,0 +1 @@
+prefer: cbe8883b51c532a9891afda720647709d1741adc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 76/af02453fbad0f13927fdd1768117756a876205

2015-11-24 Thread Caolán McNamara
 76/af02453fbad0f13927fdd1768117756a876205 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit d0ea61fab79ba26f2e947c51f0150f558d6ed830
Author: Caolán McNamara 
Date:   Tue Nov 24 18:57:52 2015 +

Notes added by 'git notes add'

diff --git a/76/af02453fbad0f13927fdd1768117756a876205 
b/76/af02453fbad0f13927fdd1768117756a876205
new file mode 100644
index 000..bde2ea6
--- /dev/null
+++ b/76/af02453fbad0f13927fdd1768117756a876205
@@ -0,0 +1 @@
+prefer: 4eee115824e8eec8c824f72253d86caf593e0e11
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 60/62581a6a07b59e2283a8361815c0db9e7fb45b

2015-11-24 Thread Caolán McNamara
 60/62581a6a07b59e2283a8361815c0db9e7fb45b |1 +
 1 file changed, 1 insertion(+)

New commits:
commit b8c715aac2b27d0743875a8afd1375219330e6d1
Author: Caolán McNamara 
Date:   Tue Nov 24 18:59:40 2015 +

Notes added by 'git notes add'

diff --git a/60/62581a6a07b59e2283a8361815c0db9e7fb45b 
b/60/62581a6a07b59e2283a8361815c0db9e7fb45b
new file mode 100644
index 000..6fac4ca
--- /dev/null
+++ b/60/62581a6a07b59e2283a8361815c0db9e7fb45b
@@ -0,0 +1 @@
+prefer: 48d099a85a3293074070ca91f4465f479cb3b90c
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96045] Imported formulas from Excel don't work until you copy paste the exact same formula

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96045

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Created attachment 120771
  --> https://bugs.documentfoundation.org/attachment.cgi?id=120771=edit
Screenshot file content.

Hi @Jonathan, thanks for reporting.

Looking into the content file that functions were saved with the French
(attaced screenshot) name not with the default name, so they are not open
properly. 

Maybe the file was open and saved with a program version that not support that
function.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96045] Imported formulas from Excel don't work until you copy paste the exact same formula

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96045

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91456] "Fade smoothly" slide transition is broken

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91456

--- Comment #14 from roumanet  ---
tested with 5.1 alpha (from 24th november) : bug still there...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-7' - download.lst external/nss

2015-11-24 Thread Michael Stahl
 download.lst |2 
 external/nss/UnpackedTarball_nss.mk  |2 
 external/nss/nspr-build-config.patch | 2543 ---
 external/nss/nss-linux-x86.patch.0   |   10 
 external/nss/nss.patch   |6 
 external/nss/nss_macosx.patch|   32 
 6 files changed, 5 insertions(+), 2590 deletions(-)

New commits:
commit 30b0bca5426f1728ad5d6b74f2525c1562fbda03
Author: Michael Stahl 
Date:   Wed Jul 1 17:15:39 2015 +0200

nss: upgrade to release 3.19.2 (and then 3.19.4)

- drop nss-linux-x86-patch.0:
  this was actually patching OS/2-specific code so is evidently obsolete
- drop nspr-build-config.patch:
  there does not appear to be any justification why this huge patch exists
  at all, so the only reasonable thing to do is to drop it
- nss_macosx.patch:
  drop several hunks relevant only to unuspported MacOSX/PPC platform

(cherry picked from commit 6e7991dfd8c54a833f4a9795a0d57f4690e92e6b)
(cherry picked from commit 0c1922a268cefb7a1c90f2519053123303ca6ebf)

Change-Id: I303254d17450e5252b5d9e925082c39d0077654e
Reviewed-on: https://gerrit.libreoffice.org/20090
Reviewed-by: Christian Lohmaier 
Tested-by: Christian Lohmaier 
(cherry picked from commit ba8cf4367f7645e7e58f0e1b3deac35cee6c5984)
Reviewed-on: https://gerrit.libreoffice.org/20153
Reviewed-by: Eike Rathke 
Reviewed-by: Tomaž Vajngerl 

diff --git a/download.lst b/download.lst
index 800267f..4a683f5 100644
--- a/download.lst
+++ b/download.lst
@@ -108,7 +108,7 @@ export MWAW_TARBALL := 
libmwaw-0.3.$(MWAW_VERSION_MICRO).tar.bz2
 export MYSQLCPPCONN_TARBALL := 
7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz
 export MYTHES_TARBALL := a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz
 export NEON_TARBALL := ff369e69ef0f0143beb5626164e87ae2-neon-0.29.5.tar.gz
-export NSS_TARBALL := 
b279551b7638d0e36d1199548124c247-nss-3.16.5-with-nspr-4.10.6.tar.gz
+export NSS_TARBALL := 
478e0e90ebc4a90159549e77021021fd-nss-3.19.4-with-nspr-4.10.10.tar.gz
 export ODFGEN_MD5SUM := 47d292edebac7b60c61d5cf307da1d64
 export ODFGEN_VERSION_MICRO := 3
 export ODFGEN_TARBALL := libodfgen-0.1.$(ODFGEN_VERSION_MICRO).tar.bz2
diff --git a/external/nss/UnpackedTarball_nss.mk 
b/external/nss/UnpackedTarball_nss.mk
index fa798d1..1b9f45d 100644
--- a/external/nss/UnpackedTarball_nss.mk
+++ b/external/nss/UnpackedTarball_nss.mk
@@ -16,13 +16,11 @@ $(eval $(call gb_UnpackedTarball_add_patches,nss,\
external/nss/nss.aix.patch \
external/nss/nss-3.13.5-zlib-werror.patch \
external/nss/nss_macosx.patch \
-   external/nss/nss-linux-x86.patch.0 \
external/nss/nss-win32-make.patch.1 \
$(if $(filter WNTMSC,$(OS)$(COM)),external/nss/nss.windows.patch) \
$(if $(filter WNTGCC,$(OS)$(COM)),external/nss/nspr-4.9-build.patch.3 \
external/nss/nss-3.13.3-build.patch.3 \
external/nss/nss.mingw.patch.3) \
-external/nss/nspr-build-config.patch \
 external/nss/ubsan.patch.0 \
 $(if $(filter IOS,$(OS)), \
 external/nss/nss-chromium-nss-static.patch \
diff --git a/external/nss/nspr-build-config.patch 
b/external/nss/nspr-build-config.patch
deleted file mode 100644
index 5fce0ec..000
--- a/external/nss/nspr-build-config.patch
+++ /dev/null
@@ -1,2543 +0,0 @@
 a/a/nspr/build/autoconf/GPLv3.txt  1970-01-01 01:00:00.0 +0100
-+++ b/b/nspr/build/autoconf/GPLv3.txt  2014-07-10 00:56:24.0 +0200
-@@ -0,0 +1,674 @@
-+GNU GENERAL PUBLIC LICENSE
-+   Version 3, 29 June 2007
-+
-+ Copyright (C) 2007 Free Software Foundation, Inc. 
-+ Everyone is permitted to copy and distribute verbatim copies
-+ of this license document, but changing it is not allowed.
-+
-+Preamble
-+
-+  The GNU General Public License is a free, copyleft license for
-+software and other kinds of works.
-+
-+  The licenses for most software and other practical works are designed
-+to take away your freedom to share and change the works.  By contrast,
-+the GNU General Public License is intended to guarantee your freedom to
-+share and change all versions of a program--to make sure it remains free
-+software for all its users.  We, the Free Software Foundation, use the
-+GNU General Public License for most of our software; it applies also to
-+any other work released this way by its authors.  You can apply it to
-+your programs, too.
-+
-+  When we speak of free software, we are referring to freedom, not
-+price.  Our General Public Licenses are designed to make sure that you
-+have the freedom to distribute copies of free software (and charge for
-+them if you wish), that you receive source code or can get it if you
-+want it, that you can 

[Libreoffice-bugs] [Bug 96030] New: FILEOPEN: Wrong calculation compared to Excel 2010

2015-11-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96030

Bug ID: 96030
   Summary: FILEOPEN: Wrong calculation compared to Excel 2010
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: reisi...@gmail.com

Hi,

Simple open the file in LibreOffice (22 MB)

I tried with Excel 2010 and LibreOffice Version: 5.1.0.0.alpha1+ (x64)
Build-ID: 32d4c03cba399ada807b8ec113a3928aa9e3ff7b
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-11-16_23:41:46
Gebietsschema: de-AT (de_AT)

Version: 5.0.3.2 (x64)
Build-ID: e5f16313668ac592c1bfb310f4390624e3dbfb75-GL
Gebietsschema: en-US (de_AT) also not working

Version: 4.3.5.2
Build-ID: 3a87456aaa6a95c63eea1c1b3201acedf0751bd5 WORKING regression

The first error is in F4 but I gueess C5:F5 is also faulty which results in the
rest being wrong. I uploaded the 22 MB file here:
https://app.box.com/s/usrad4nglvo7za3yg7w9d9nbxaysgbve

There is a screenshot of Excel included

Operations used are: "+" "*" "/" and cell reference e.g. "=D2+F2". So very
basic stuff.

Recalculating does not help.

Tested on WIn 10

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   >