[Libreoffice-commits] core.git: sw/Module_sw.mk sw/qa sw/UITest_classification.mk

2019-01-30 Thread Libreoffice Gerrit user
sw/Module_sw.mk |1 sw/UITest_classification.mk | 16 ++ sw/qa/uitest/classification/classification.py | 179 ++ 3 files changed, 196 insertions(+) New commits: commit d87bf779c7a5fc5512b53aa175222d8f71d6698b Author:

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

2019-01-30 Thread Libreoffice Gerrit user
sw/qa/uitest/findReplace/findSimilarity.py | 92 + 1 file changed, 92 insertions(+) New commits: commit f053a87d62b01c1737dafa7cc5466d36e3b9baf7 Author: Zdeněk Crhonek AuthorDate: Wed Jan 30 19:20:53 2019 +0100 Commit: Zdenek Crhonek CommitDate: Thu Jan 31

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

2019-01-30 Thread Libreoffice Gerrit user
sw/source/uibase/uiview/view2.cxx |5 - 1 file changed, 4 insertions(+), 1 deletion(-) New commits: commit a89f535d85bb7d32ccb5196813ba6233f45c0c83 Author: Stephan Bergmann AuthorDate: Wed Jan 30 20:48:15 2019 +0100 Commit: Stephan Bergmann CommitDate: Thu Jan 31 08:29:44 2019 +

Re: Possible extensions to OUString class

2019-01-30 Thread Stephan Bergmann
On 31/01/2019 08:10, Kaganski Mike wrote: Is there a C++ magic to automatically select a getToken variant returning string_view vs returning OUString based on if the original OUString object is a temporary? Declare overloads discriminating on whether the OUString is lvalue (&) or rvalue (&&).

Re: Possible extensions to OUString class

2019-01-30 Thread Kaganski Mike
On 31.01.2019 0:40, Stephan Bergmann wrote: > Also, a better approach overall would probably be some string_view-based > getToken functionality (converting from an OUString to a string_view is > cheap), and then string_view-based toInt etc. functions. Is there a C++ magic to automatically select

Re: Possible extensions to OUString class

2019-01-30 Thread Matteo Casalin
Hi Stephan, On 1/30/19 10:40 PM, Stephan Bergmann wrote: On 30/01/2019 22:17, Matteo Casalin wrote: I'm working on improving code that calls getToken (e.g. using its version with index, or using other OUString functions in its place when possible). One thing that I noticed is that there a

[Libreoffice-commits] core.git: chart2/qa

2019-01-30 Thread Libreoffice Gerrit user
0 files changed New commits: commit e5d06775dd1e7a21088538a7f5fde161ef199094 Author: Andrea Gelmini AuthorDate: Wed Jan 30 18:19:17 2019 +0100 Commit: Julien Nabet CommitDate: Thu Jan 31 07:10:38 2019 +0100 Removed executable permission on xlsx file Change-Id: If1a2ae9432b

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

2019-01-30 Thread Libreoffice Gerrit user
chart2/source/controller/main/SelectionHelper.cxx |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit a3aa4175bd0c8661e803a857d73ae3cc669fc05b Author: Andrea Gelmini AuthorDate: Mon Jan 28 10:43:43 2019 + Commit: Julien Nabet CommitDate: Thu Jan 31 07:10

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

2019-01-30 Thread Libreoffice Gerrit user
sd/inc/strings.hrc |1 + sd/source/ui/slideshow/slideshow.cxx |6 ++ 2 files changed, 7 insertions(+) New commits: commit 7373581b52ef3870e463585f53a798acb544d9a7 Author: Sumit Chauhan AuthorDate: Fri Jan 25 17:15:35 2019 +0530 Commit: Mike Kaganski CommitD

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

2019-01-30 Thread Libreoffice Gerrit user
cppu/source/typelib/typelib.cxx | 62 +++- 1 file changed, 30 insertions(+), 32 deletions(-) New commits: commit ae736f657b9372ad164e3ebb652df9ac6f19f0f2 Author: Matthias Seidel AuthorDate: Wed Jan 30 23:20:23 2019 + Commit: Matthias Seidel Comm

[Libreoffice-commits] core.git: include/oox oox/source sd/qa

2019-01-30 Thread Libreoffice Gerrit user
include/oox/drawingml/color.hxx |3 ++ oox/source/drawingml/color.cxx |8 + oox/source/drawingml/fillproperties.cxx | 48 sd/qa/unit/data/pptx/tdf94238.pptx |binary sd/qa/unit/import-tests.cxx | 33

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

2019-01-30 Thread Libreoffice Gerrit user
sw/qa/uitest/writer_tests5/tdf122722.py | 78 1 file changed, 78 insertions(+) New commits: commit 92cea90ee51ef27ff349d854a07bcb7d270f3c4b Author: Zdeněk Crhonek AuthorDate: Wed Jan 30 17:33:34 2019 +0100 Commit: Zdenek Crhonek CommitDate: Wed Jan 30

[Libreoffice-commits] core.git: vcl/qa

2019-01-30 Thread Libreoffice Gerrit user
vcl/qa/cppunit/pdfexport/pdfexport.cxx |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) New commits: commit 14b9e0bf94caf0ad679a52c43c0b9501aef6b0d7 Author: Stephan Bergmann AuthorDate: Wed Jan 30 17:25:16 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 22:56:42

[Libreoffice-commits] core.git: configure.ac external/firebird

2019-01-30 Thread Libreoffice Gerrit user
configure.ac |8 external/firebird/ExternalProject_firebird.mk |1 + 2 files changed, 9 insertions(+) New commits: commit 50cd28e5728b6a64c1e605567540739ea6ef42ca Author: Stephan Bergmann AuthorDate: Wed Jan 30 09:25:09 2019 +0100 Commit:

Re: Possible extensions to OUString class

2019-01-30 Thread Stephan Bergmann
On 30/01/2019 22:17, Matteo Casalin wrote:     I'm working on improving code that calls getToken (e.g. using its version with index, or using other OUString functions in its place when possible). One thing that I noticed is that there are a lot of calls in the form getToken().toInt# which requ

Re: Any clue if this could be a typo?

2019-01-30 Thread Stephan Bergmann
On 30/01/2019 22:02, Matteo Casalin wrote: Dear all,     I stumbled upon this code: https://opengrok.libreoffice.org/xref/core/sw/source/ui/fldui/fldpage.cxx?r=1a33947a#143 and think that at line 152 token #2 should be obtained instead of token #1 (which was just obtained a couple of lines

Possible extensions to OUString class

2019-01-30 Thread Matteo Casalin
Dear all, I'm working on improving code that calls getToken (e.g. using its version with index, or using other OUString functions in its place when possible). One thing that I noticed is that there are a lot of calls in the form getToken().toInt# which require memory management just to obta

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

2019-01-30 Thread Libreoffice Gerrit user
vcl/source/gdi/dibtools.cxx | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) New commits: commit 61364e5b983acea4f8607cc74d8cc6c319a6e3a5 Author: Caolán McNamara AuthorDate: Wed Jan 30 13:36:01 2019 + Commit: Caolán McNamara CommitDate: Wed Jan 30 22:13:10 201

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

2019-01-30 Thread Libreoffice Gerrit user
connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.hxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 654bbb9559dc4dfbd3dfc56f15fcedae9e8d5a27 Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:33:46 2019 +0100 Commit: Stephan Bergmann CommitDate:

Any clue if this could be a typo?

2019-01-30 Thread Matteo Casalin
Dear all, I stumbled upon this code: https://opengrok.libreoffice.org/xref/core/sw/source/ui/fldui/fldpage.cxx?r=1a33947a#143 and think that at line 152 token #2 should be obtained instead of token #1 (which was just obtained a couple of lines before). I don't know what this code is used fo

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

2019-01-30 Thread Libreoffice Gerrit user
extensions/source/scanner/scanwin.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 6d341ad7f015b9efe636dea7084d7b4a60a009bc Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:43:36 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 22:00:26 2019 +

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

2019-01-30 Thread Libreoffice Gerrit user
extensions/source/scanner/twain32shim.cxx |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 8304c06a7b997231962d3a864ce4872cb852c27f Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:48:11 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 22:00:5

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

2019-01-30 Thread Libreoffice Gerrit user
extensions/source/scanner/scanwin.cxx |2 +- extensions/source/scanner/twain32shim.cxx |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) New commits: commit 2035b3ea5390f2d1d61a72b7c2e8f1193db3d2d2 Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:31:45 2019 +0100 Commit:

[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - odk/build-examples_common.mk

2019-01-30 Thread Libreoffice Gerrit user
odk/build-examples_common.mk |1 + 1 file changed, 1 insertion(+) New commits: commit 2b56b53e47dee21b3f58024b262061982fbff7fb Author: Michael Stahl AuthorDate: Tue Jan 29 14:38:06 2019 +0100 Commit: Thorsten Behrens CommitDate: Wed Jan 30 20:35:34 2019 +0100 odk: CustomTarget_

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - odk/build-examples_common.mk

2019-01-30 Thread Libreoffice Gerrit user
odk/build-examples_common.mk |1 + 1 file changed, 1 insertion(+) New commits: commit b8dbfe00e8541a8ecd98a4d336b4d5844ecb9620 Author: Michael Stahl AuthorDate: Tue Jan 29 14:38:06 2019 +0100 Commit: Thorsten Behrens CommitDate: Wed Jan 30 20:35:21 2019 +0100 odk: CustomTarget_

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - vcl/unx

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/gtk3_kde5/kde5_filepicker.cxx | 26 +- vcl/unx/gtk3_kde5/kde5_filepicker.hxx |2 ++ 2 files changed, 27 insertions(+), 1 deletion(-) New commits: commit 9455565fba299645372ddf432d25b679af51281f Author: Michael Weghorn AuthorDate: Wed Jan 30 10:11:35 2019

[Libreoffice-commits] core.git: autogen.sh configure.ac

2019-01-30 Thread Libreoffice Gerrit user
autogen.sh |8 ++-- configure.ac |7 ++- 2 files changed, 12 insertions(+), 3 deletions(-) New commits: commit 191966900865bd720f356941cb392abf3538df31 Author: Christian Lohmaier AuthorDate: Wed Jan 30 15:10:56 2019 +0100 Commit: Thorsten Behrens CommitDate: Wed Jan 30

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

2019-01-30 Thread Libreoffice Gerrit user
sc/qa/uitest/autofilter/data/tdf122260.ods |binary sc/qa/uitest/autofilter/tdf117276.py |2 sc/qa/uitest/autofilter/tdf122260.py | 102 + sc/source/ui/view/gridwin.cxx |1 4 files changed, 104 insertions(+), 1 deletion(-) New commit

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - vcl/unx

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/kde5/KDE5SalInstance.cxx | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) New commits: commit 71562327d4f4d9d46b129fbb41184f21116ba78d Author: Michael Weghorn AuthorDate: Wed Jan 30 08:53:19 2019 +0100 Commit: Thorsten Behrens CommitDate: Wed Jan 30 20:23:05 201

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-5-2+backports' - sc/source

2019-01-30 Thread Libreoffice Gerrit user
sc/source/ui/unoobj/filtuno.cxx |1 + 1 file changed, 1 insertion(+) New commits: commit d3ffa88402839cf6ee6fdb16e9150fa3fb3f7ba5 Author: Michael Stahl AuthorDate: Wed Jan 30 18:59:29 2019 +0100 Commit: Thorsten Behrens CommitDate: Wed Jan 30 20:19:56 2019 +0100 sc: set default

[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - vcl/unx

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/gtk3/gtk3gtkinst.cxx |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) New commits: commit f2a39ac20f0d79e169fb4b403fbddea268c72266 Author: Michael Stahl AuthorDate: Tue Jan 29 18:39:25 2019 +0100 Commit: Thorsten Behrens CommitDate: Wed Jan 30 20:22:27 2019 +0100

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - vcl/unx

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/gtk3/gtk3gtkinst.cxx |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) New commits: commit e11fcd8141b359a88be59c17fa6900a684cd4b8e Author: Michael Stahl AuthorDate: Tue Jan 29 18:39:25 2019 +0100 Commit: Thorsten Behrens CommitDate: Wed Jan 30 20:22:10 2019 +0100

[Libreoffice-commits] core.git: external/boost

2019-01-30 Thread Libreoffice Gerrit user
external/boost/boost_1_60_0.undef.warning.patch |8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) New commits: commit b4d3f37ee0a7fd9b16eefa5f694fd2dff8a538fa Author: Stephan Bergmann AuthorDate: Mon Jan 28 11:31:56 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 3

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

2019-01-30 Thread Libreoffice Gerrit user
vcl/source/app/salplug.cxx |1 + 1 file changed, 1 insertion(+) New commits: commit 1b2740baec29f89da9389b6da016baa312dff630 Author: Stephan Bergmann AuthorDate: Wed Jan 30 15:06:27 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 19:29:16 2019 +0100 loplugin:external

[Libreoffice-commits] core.git: solenv/bin

2019-01-30 Thread Libreoffice Gerrit user
solenv/bin/concat-deps.c |1 - 1 file changed, 1 deletion(-) New commits: commit d92296e3f644fe803eb7979d33cf682298d74f2a Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:59:02 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 19:13:30 2019 +0100 -Werror,-Wunused-mac

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

2019-01-30 Thread Libreoffice Gerrit user
oox/source/export/chartexport.cxx |1 + 1 file changed, 1 insertion(+) New commits: commit a5597bc96980af4216efe989176f2348053d35d2 Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:56:24 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 19:12:53 2019 +0100 Missing in

[Libreoffice-commits] core.git: include/editeng

2019-01-30 Thread Libreoffice Gerrit user
include/editeng/flstitem.hxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 6f658d9278dae4033a41b23937e49dba19c10873 Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:54:33 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 19:12:15 2019 +0100

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

2019-01-30 Thread Libreoffice Gerrit user
winaccessibility/source/UAccCOM/MAccessible.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 293d1e78f54ff299f3686da673eb73b674172837 Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:48:51 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 19:11

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - configure.ac

2019-01-30 Thread Libreoffice Gerrit user
configure.ac | 16 1 file changed, 8 insertions(+), 8 deletions(-) New commits: commit 9d985abccf0f9ae0f0bdb72741a1942d213396a4 Author: Stephan Bergmann AuthorDate: Wed Jan 30 12:05:45 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 19:03:38 2019 +0100

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

2019-01-30 Thread Libreoffice Gerrit user
extensions/source/scanner/scanwin.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 31d07df57fb97ae9bf2e6f2d749cc1a0769eb4ad Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:44:37 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 19:03:25 2019 +

[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-6.1.5.2'

2019-01-30 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.5.2' created by Christian Lohmaier at 2019-01-30 17:56 + Tag libreoffice-6.1.5.2 -BEGIN PGP SIGNATURE- iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAlxR5WcACgkQ9DSh76/u rqNU8g//U4o5cj5vCUG24LjxLPMV2GfvLYxEZEVXfIm4sUqfR/Gv+Bwu9lObjSeu lCDDwp+llG3msg3JvHyW0fmmUpHSr

[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-6.1.5.2'

2019-01-30 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.5.2' created by Christian Lohmaier at 2019-01-30 17:56 + Tag libreoffice-6.1.5.2 -BEGIN PGP SIGNATURE- iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAlxR5WcACgkQ9DSh76/u rqNHWxAAglgAL3A3YNKQvU6oW2cxmzJv7Sa0sqdRPSBx6qoBTImdTNvW4GadNe3l JNPojOjD3c9BFxjqD2Iock+5R0yV5

[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-6.1.5.2'

2019-01-30 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.5.2' created by Christian Lohmaier at 2019-01-30 17:56 + Tag libreoffice-6.1.5.2 -BEGIN PGP SIGNATURE- iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAlxR5WMACgkQ9DSh76/u rqNuDhAAxzWwuAGcY2x33ZVvVmccD/La5uWncn/FZA2oFjCWN9dMGEVFaEtvSph/ +VEb+zmyLeXQeyUl8KNe8Ktj69VNz

[Libreoffice-commits] core.git: Branch 'libreoffice-6-1-5' - configure.ac

2019-01-30 Thread Libreoffice Gerrit user
configure.ac |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 3e230c18143c4893e67e6e814fb73f9daaf226e3 Author: Christian Lohmaier AuthorDate: Wed Jan 30 18:57:21 2019 +0100 Commit: Christian Lohmaier CommitDate: Wed Jan 30 18:57:21 2019 +0100 bump produc

[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-6.1.5.2'

2019-01-30 Thread Libreoffice Gerrit user
Tag 'libreoffice-6.1.5.2' created by Christian Lohmaier at 2019-01-30 17:56 + Tag libreoffice-6.1.5.2 -BEGIN PGP SIGNATURE- iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAlxR5WcACgkQ9DSh76/u rqNxgRAAhqDKNkKt3OjG9NJvWizXJYNA5nr0WVXpq3P3cUB+ZH46+ENIhUCOJ7L2 mhLvjt3sYy9fVjSCREWa7l8cEJSyJ

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - sw/qa sw/source

2019-01-30 Thread Libreoffice Gerrit user
sw/qa/extras/uiwriter/uiwriter2.cxx| 102 +++-- sw/source/uibase/docvw/FloatingTableButton.cxx | 37 - 2 files changed, 97 insertions(+), 42 deletions(-) New commits: commit 79f84cf94dd26c4fee14a0db4a98df7791df78f2 Author: Tamás Zolnai AuthorDate: W

[Libreoffice-commits] online.git: loleaflet/css

2019-01-30 Thread Libreoffice Gerrit user
loleaflet/css/toolbar.css |4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) New commits: commit 70b30f9699277eb2aff788dc70dcf993675175ef Author: Szymon Kłos AuthorDate: Wed Jan 30 18:20:30 2019 +0100 Commit: Szymon Kłos CommitDate: Wed Jan 30 18:22:54 2019 +0100 Show comb

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - loleaflet/css

2019-01-30 Thread Libreoffice Gerrit user
loleaflet/css/toolbar.css |4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) New commits: commit 8c10c2b3af820ea819563c04d41d5cf46b9a9979 Author: Szymon Kłos AuthorDate: Wed Jan 30 18:20:30 2019 +0100 Commit: Szymon Kłos CommitDate: Wed Jan 30 18:23:57 2019 +0100 Show comb

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

2019-01-30 Thread Libreoffice Gerrit user
sw/source/core/crsr/crstrvl.cxx |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) New commits: commit 1ec8caedace2de2b7e6bf91468301548b54a28a8 Author: Michael Stahl AuthorDate: Wed Jan 30 12:16:30 2019 +0100 Commit: Michael Stahl CommitDate: Wed Jan 30 18:18:41 2019 +0100

[Libreoffice-commits] core.git: dtrans/source vcl/inc vcl/win

2019-01-30 Thread Libreoffice Gerrit user
dtrans/source/win32/dtobj/FetcList.cxx |2 +- vcl/inc/win/winlayout.hxx |2 +- vcl/win/gdi/gdiimpl.cxx|2 +- vcl/win/gdi/winlayout.cxx |2 +- 4 files changed, 4 insertions(+), 4 deletions(-) New commits: commit 8f31bb9d3facfc34f42b89ef7b1e

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

2019-01-30 Thread Libreoffice Gerrit user
sc/qa/extras/scspreadsheetsettingsobj.cxx |5 + 1 file changed, 1 insertion(+), 4 deletions(-) New commits: commit 2b012f9d52dd0d52c7e1f3f1521ae3f7c7e65113 Author: Jens Carl AuthorDate: Wed Jan 30 06:40:37 2019 + Commit: Jens Carl CommitDate: Wed Jan 30 17:43:04 2019 +0100

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

2019-01-30 Thread Libreoffice Gerrit user
dtrans/source/win32/clipb/MtaOleClipb.cxx |1 - 1 file changed, 1 deletion(-) New commits: commit 8eccadb49ede6277cfe7086d64b523c8eb847e91 Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:37:58 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 17:40:11 2019 +0100 -We

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

2019-01-30 Thread Libreoffice Gerrit user
sw/source/uibase/misc/redlndlg.cxx |1 + 1 file changed, 1 insertion(+) New commits: commit fa1eba9b761ec2932a8655d0561bdf36403f490c Author: László Németh AuthorDate: Wed Jan 30 17:21:24 2019 +0100 Commit: László Németh CommitDate: Wed Jan 30 17:32:50 2019 +0100 tdf#122428 show

[Libreoffice-commits] online.git: loleaflet/src

2019-01-30 Thread Libreoffice Gerrit user
loleaflet/src/map/Map.js |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) New commits: commit dca0a126f343f19f2c1fc0bb601c9108d7bf2c30 Author: Szymon Kłos AuthorDate: Wed Jan 30 17:04:15 2019 +0100 Commit: Szymon Kłos CommitDate: Wed Jan 30 17:06:24 2019 +0100 Check if an

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - loleaflet/src

2019-01-30 Thread Libreoffice Gerrit user
loleaflet/src/map/Map.js |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) New commits: commit 7a274c80cf86cb069cfda11951bdaf3d88e7a64f Author: Szymon Kłos AuthorDate: Wed Jan 30 17:04:15 2019 +0100 Commit: Szymon Kłos CommitDate: Wed Jan 30 17:05:55 2019 +0100 Check if an

calc: increased column / row limit.

2019-01-30 Thread Michael Meeks
* Meeting @ FOSDEM hackfest: - rough minutes & code ptrs. * Present: + Eike, Noel, Michael * Issues are: + ODF + serializes A:A as A1:A1million + serializes 1:1 as A1:AMJ1 + need to store it as 1:1 ... * Because older versions fail:

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - 2 commits - loleaflet/css loleaflet/js loleaflet/src

2019-01-30 Thread Libreoffice Gerrit user
loleaflet/css/loleaflet.css | 11 +-- loleaflet/css/spreadsheet.css|4 ++-- loleaflet/js/toolbar.js |2 +- loleaflet/src/layer/AnnotationManager.js |3 --- loleaflet/src/layer/marker/Annotation.js | 12 ++-- loleaflet/src/ma

[Libreoffice-commits] online.git: 2 commits - loleaflet/css loleaflet/js loleaflet/src

2019-01-30 Thread Libreoffice Gerrit user
loleaflet/css/loleaflet.css | 11 +-- loleaflet/css/spreadsheet.css|4 ++-- loleaflet/js/toolbar.js |2 +- loleaflet/src/layer/AnnotationManager.js |3 --- loleaflet/src/layer/marker/Annotation.js | 12 ++-- loleaflet/src/ma

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-5-2+backports' - vcl/source

2019-01-30 Thread Libreoffice Gerrit user
vcl/source/opengl/OpenGLHelper.cxx |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) New commits: commit 657f2d1558827e2c886e757df893c7ca067d4e7d Author: Markus Mohrhard AuthorDate: Sat Sep 24 23:50:13 2016 +0200 Commit: Samuel Mehrbrodt CommitDate: Wed Jan 30 16:40:07 2019

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

2019-01-30 Thread Libreoffice Gerrit user
sw/source/uibase/docvw/UnfloatTableButton.cxx | 24 ++-- 1 file changed, 18 insertions(+), 6 deletions(-) New commits: commit 9d319865f8bf78d25ca2e614d148420054a6461a Author: Tamás Zolnai AuthorDate: Wed Jan 30 12:08:41 2019 +0100 Commit: Tamás Zolnai CommitDate: W

[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - configure.ac

2019-01-30 Thread Libreoffice Gerrit user
configure.ac | 16 1 file changed, 8 insertions(+), 8 deletions(-) New commits: commit ca1ad45e82f8822c048d8161c85e191e4c923961 Author: Stephan Bergmann AuthorDate: Wed Jan 30 12:05:45 2019 +0100 Commit: Michael Stahl CommitDate: Wed Jan 30 16:26:13 2019 +0100 Av

[Libreoffice-commits] core.git: desktop/win32

2019-01-30 Thread Libreoffice Gerrit user
desktop/win32/source/loader.cxx | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) New commits: commit 9d79fb32b76762394f68f80c1cd3dec8864f4d17 Author: Stephan Bergmann AuthorDate: Wed Jan 30 14:30:10 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 16:25:51

[Libreoffice-commits] core.git: bridges/source canvas/source dtrans/source fpicker/source sal/osl setup_native/source shell/source solenv/bin stoc/source vcl/win

2019-01-30 Thread Libreoffice Gerrit user
bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx | 2 - bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx | 4 +- canvas/source/directx/dx_9rm.cxx | 8 ++--- canvas/source/directx/dx_impltools.cxx

[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-6.0-22-PTF'

2019-01-30 Thread Libreoffice Gerrit user
Tag 'cp-6.0-22-PTF' created by Andras Timar at 2019-01-30 14:46 + cp-6.0-22-PTF Changes since cd-6.0-21-4: --- 0 files changed --- ___ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailma

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - configure.ac

2019-01-30 Thread Libreoffice Gerrit user
configure.ac |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 3937898c80f4c2fe9a3bb569bd449264a03d6466 Author: Andras Timar AuthorDate: Wed Jan 30 15:46:15 2019 +0100 Commit: Andras Timar CommitDate: Wed Jan 30 15:46:15 2019 +0100 Bump version to 6.0-22

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - svtools/source

2019-01-30 Thread Libreoffice Gerrit user
svtools/source/misc/embedhlp.cxx |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) New commits: commit 00bf2dc3ccf462174aeefca30e28a6a87a6b93ee Author: Caolán McNamara AuthorDate: Wed Jan 30 10:12:44 2019 + Commit: Caolán McNamara CommitDate: Wed Jan 30 15:42:07 2019 +0

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - connectivity/qa connectivity/source

2019-01-30 Thread Libreoffice Gerrit user
connectivity/qa/connectivity/mysql/mysql.cxx| 36 connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx | 11 +++- connectivity/source/drivers/mysqlc/mysqlc_resultset.hxx |2 3 files changed, 44 insertions(+), 5 deletions(-) New commits: commit 49f0bb2eba1e

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

2019-01-30 Thread Libreoffice Gerrit user
svx/source/tbxctrls/fillctrl.cxx | 27 ++- svx/source/tbxctrls/itemwin.cxx |2 +- 2 files changed, 11 insertions(+), 18 deletions(-) New commits: commit 90de8fa1d10190f45450aa41c60a42a408b15f68 Author: Caolán McNamara AuthorDate: Wed Jan 30 12:01:48 2019 +

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

2019-01-30 Thread Libreoffice Gerrit user
vcl/inc/unx/gtk/gtkgdi.hxx|2 +- vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx | 13 - 2 files changed, 9 insertions(+), 6 deletions(-) New commits: commit 9e8f11a722ee9cba37c4692a6ab7d74536261429 Author: Caolán McNamara AuthorDate: Wed Jan 30 10:59:02 2019 +000

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

2019-01-30 Thread Libreoffice Gerrit user
filter/source/graphicfilter/icgm/bitmap.cxx |8 1 file changed, 8 insertions(+) New commits: commit 3f726abf5c4c32619f93d4982f8fb1e07619ba40 Author: Caolán McNamara AuthorDate: Wed Jan 30 12:31:55 2019 + Commit: Caolán McNamara CommitDate: Wed Jan 30 15:40:19 2019 +0100

[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-5-2+backports' - 2 commits - svtools/source vcl/unx

2019-01-30 Thread Libreoffice Gerrit user
svtools/source/misc/transfer.cxx |4 vcl/unx/gtk3/gtk3gtkinst.cxx |7 ++- 2 files changed, 6 insertions(+), 5 deletions(-) New commits: commit 23f4be51ddc410acb71634ca6c50ca52664dca86 Author: Michael Stahl AuthorDate: Tue Jan 29 18:39:25 2019 +0100 Commit: Michael St

[Libreoffice-commits] core.git: external/boost

2019-01-30 Thread Libreoffice Gerrit user
external/boost/UnpackedTarball_boost.mk |2 -- external/boost/Wundef.patch.0 | 11 --- external/boost/boost_1_60_0.undef.warning.patch |8 +++- 3 files changed, 7 insertions(+), 14 deletions(-) New commits: commit 21299f54815584951b844537749944d1688

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

2019-01-30 Thread Libreoffice Gerrit user
sw/qa/uitest/writer_tests/data/tdf122449.odt |binary sw/qa/uitest/writer_tests4/tdf122449.py | 57 +++ 2 files changed, 57 insertions(+) New commits: commit d165ab3d716c87d3d274f58adc0c37aaedf61e7c Author: Zdeněk Crhonek AuthorDate: Wed Jan 30 12:10:41 2019 +0

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

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/gtk3/gtk3gtkinst.cxx |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) New commits: commit 9286cebdff378a19ec146183676c6da96aac77db Author: Michael Stahl AuthorDate: Tue Jan 29 18:39:25 2019 +0100 Commit: Michael Stahl CommitDate: Wed Jan 30 14:40:56 2019 +0100

[Libreoffice-commits] core.git: vcl/qt5

2019-01-30 Thread Libreoffice Gerrit user
vcl/qt5/Qt5DragAndDrop.cxx |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) New commits: commit b9afe593d4756ea30a9f23af6f5f0414656173f0 Author: Caolán McNamara AuthorDate: Wed Jan 30 13:00:46 2019 + Commit: Caolán McNamara CommitDate: Wed Jan 30 13:00:46 2019 + b

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

2019-01-30 Thread Libreoffice Gerrit user
sc/qa/uitest/options/tdf122977.py | 60 ++ 1 file changed, 60 insertions(+) New commits: commit 20408e88a93a30bf29de60057d09f8a0ef2951c9 Author: Zdeněk Crhonek AuthorDate: Wed Jan 30 11:03:10 2019 +0100 Commit: Zdenek Crhonek CommitDate: Wed Jan 30

[Libreoffice-commits] core.git: configure.ac

2019-01-30 Thread Libreoffice Gerrit user
configure.ac | 16 1 file changed, 8 insertions(+), 8 deletions(-) New commits: commit fcb08e31ee0635fe61338246a57e926c11890ac7 Author: Stephan Bergmann AuthorDate: Wed Jan 30 12:05:45 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 13:44:16 2019 +0100

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - cui/source

2019-01-30 Thread Libreoffice Gerrit user
cui/source/customize/cfg.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 1bb9126567becd881453da342315f139b4a564c9 Author: Julien Nabet AuthorDate: Wed Jan 30 09:12:35 2019 +0100 Commit: Caolán McNamara CommitDate: Wed Jan 30 13:42:13 2019 +0100 tdf#

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

2019-01-30 Thread Libreoffice Gerrit user
cui/source/customize/cfg.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 4ff272d90b62b591e344e6c4948495fee5208deb Author: Julien Nabet AuthorDate: Wed Jan 30 09:12:35 2019 +0100 Commit: Caolán McNamara CommitDate: Wed Jan 30 13:41:58 2019 +0100 tdf#

[Libreoffice-commits] core.git: vcl/qt5

2019-01-30 Thread Libreoffice Gerrit user
vcl/qt5/Qt5DragAndDrop.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 1ac54de7869d5809a312acad0a37d48028ad9d3b Author: Stephan Bergmann AuthorDate: Wed Jan 30 13:28:46 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 13:28:46 2019 +0100 -

[Libreoffice-commits] core.git: vcl/inc

2019-01-30 Thread Libreoffice Gerrit user
vcl/inc/qt5/Qt5DragAndDrop.hxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit fc67d2000631bb83812fecbf99e4179ccdac1487 Author: Stephan Bergmann AuthorDate: Wed Jan 30 13:27:33 2019 +0100 Commit: Stephan Bergmann CommitDate: Wed Jan 30 13:27:33 2019 +0100

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

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/gtk3_kde5/kde5_filepicker.cxx | 26 +- vcl/unx/gtk3_kde5/kde5_filepicker.hxx |2 ++ 2 files changed, 27 insertions(+), 1 deletion(-) New commits: commit bf93bae6990b01ee726b59b0969b93585719671a Author: Michael Weghorn AuthorDate: Wed Jan 30 10:11:35 2019

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

2019-01-30 Thread Libreoffice Gerrit user
svtools/source/misc/embedhlp.cxx |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) New commits: commit 3a2c2ad839860dcb36e30ae1a2867e4d5e1036fc Author: Caolán McNamara AuthorDate: Wed Jan 30 10:12:44 2019 + Commit: Caolán McNamara CommitDate: Wed Jan 30 12:59:08 2019 +0

[Libreoffice-commits] core.git: Branch 'distro/vector/vector-5.4' - 2 commits - framework/source sfx2/source

2019-01-30 Thread Libreoffice Gerrit user
framework/source/services/dispatchhelper.cxx | 24 +++- sfx2/source/doc/sfxbasemodel.cxx | 23 +-- 2 files changed, 44 insertions(+), 3 deletions(-) New commits: commit 6070df5b2c137a203c9f10111b3520168c208641 Author: Miklos Vajna Autho

[Libreoffice-commits] core.git: vcl/inc vcl/qt5

2019-01-30 Thread Libreoffice Gerrit user
vcl/inc/qt5/Qt5DragAndDrop.hxx | 15 + vcl/inc/qt5/Qt5Frame.hxx |5 +-- vcl/qt5/Qt5DragAndDrop.cxx | 62 + vcl/qt5/Qt5Frame.cxx | 14 ++--- vcl/qt5/Qt5Widget.cxx |7 ++-- 5 files changed, 94 insertions(+

Re: Encoding problem when migration hsqldb->Firebird

2019-01-30 Thread Kaganski Mike
On 30.01.2019 14:00, Kaganski Mike wrote: > ... a valid UTF-18 escape sequence ... Why not, if there is UTF-9? :-) Sorry for the typo. -- Best regards, Mike Kaganski ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org https://lists.freedeskt

Re: Encoding problem when migration hsqldb->Firebird

2019-01-30 Thread Kaganski Mike
Hi Julien, On 30.01.2019 12:13, Julien Nabet wrote: > Giving a try to tdf#123020 (which is finally a dup), I added some traces > and noticed this kind of string (OUString): > "CREATE CACHED TABLE "\u00c5r"("\u00c5r" INTEGER NOT NULL PRIMARY KEY)" > ... > How to convert \u... to the "real" charact

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

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/kde5/KDE5SalInstance.cxx | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) New commits: commit c902b3a96dcfbc52e53164f108e605547e598bc7 Author: Michael Weghorn AuthorDate: Wed Jan 30 08:53:19 2019 +0100 Commit: Katarina Behrens CommitDate: Wed Jan 30 11:58:01 201

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

2019-01-30 Thread Libreoffice Gerrit user
vcl/source/gdi/dibtools.cxx |1 - 1 file changed, 1 deletion(-) New commits: commit b10a3c47a34a4b139e370bfc7d1bb164fb2fcbb2 Author: Caolán McNamara AuthorDate: Wed Jan 30 09:25:14 2019 + Commit: Caolán McNamara CommitDate: Wed Jan 30 11:42:04 2019 +0100 ofz#11545 can treat

[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - vcl/unx

2019-01-30 Thread Libreoffice Gerrit user
vcl/unx/gtk3/gtk3gtkinst.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 448785475db22b8fa32ab4af2b165bb4d26e737b Author: Caolán McNamara AuthorDate: Tue Jan 29 12:43:09 2019 + Commit: Xisco Faulí CommitDate: Wed Jan 30 11:36:02 2019 +0100 tdf#1

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

2019-01-30 Thread Libreoffice Gerrit user
sfx2/source/doc/sfxbasemodel.cxx | 23 +-- 1 file changed, 21 insertions(+), 2 deletions(-) New commits: commit f1e775470e68fb1ca1fee390c10064c55932180d Author: Miklos Vajna AuthorDate: Wed Jan 30 10:17:35 2019 +0100 Commit: Miklos Vajna CommitDate: Wed Jan 30 11:3

[Libreoffice-commits] online.git: kit/Kit.cpp

2019-01-30 Thread Libreoffice Gerrit user
kit/Kit.cpp |1 - 1 file changed, 1 deletion(-) New commits: commit 6364ed0a2f7d5b5678c9c6286edbdf87b2c4dd06 Author: Andras Timar AuthorDate: Wed Jan 30 11:07:13 2019 +0100 Commit: Andras Timar CommitDate: Wed Jan 30 11:13:47 2019 +0100 we need share/template/common/internal/id

[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - kit/Kit.cpp

2019-01-30 Thread Libreoffice Gerrit user
kit/Kit.cpp |1 - 1 file changed, 1 deletion(-) New commits: commit f8fbb08d7be0b010958855b6acdb76e3640d1096 Author: Andras Timar AuthorDate: Wed Jan 30 11:05:29 2019 +0100 Commit: Andras Timar CommitDate: Wed Jan 30 11:12:40 2019 +0100 remove duplicated check for 'share/config

[Libreoffice-commits] online.git: kit/Kit.cpp

2019-01-30 Thread Libreoffice Gerrit user
kit/Kit.cpp |1 - 1 file changed, 1 deletion(-) New commits: commit 309cb0591610317dc63b204942ac54dfc470d610 Author: Andras Timar AuthorDate: Wed Jan 30 11:05:29 2019 +0100 Commit: Andras Timar CommitDate: Wed Jan 30 11:11:11 2019 +0100 remove duplicated check for 'share/config

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

2019-01-30 Thread Libreoffice Gerrit user
sc/source/core/tool/compiler.cxx | 26 +++--- 1 file changed, 23 insertions(+), 3 deletions(-) New commits: commit 7d6f30d04c51088b26815c241a7473c48822c6c3 Author: Eike Rathke AuthorDate: Tue Jan 29 15:25:52 2019 +0100 Commit: Eike Rathke CommitDate: Wed Jan 30 10:

Encoding problem when migration hsqldb->Firebird

2019-01-30 Thread Julien Nabet
Hello, Giving a try to tdf#123020 (which is finally a dup), I added some traces and noticed this kind of string (OUString): "CREATE CACHED TABLE "\u00c5r"("\u00c5r" INTEGER NOT NULL PRIMARY KEY)" It seems it prevents from migration process (hsqldb->Firebird) Here is the location where it's gen

[Libreoffice-commits] online.git: docker/Dockerfile docker/scripts

2019-01-30 Thread Libreoffice Gerrit user
docker/Dockerfile |2 +- docker/scripts/run-lool.sh |8 2 files changed, 9 insertions(+), 1 deletion(-) New commits: commit 2ae903e14723f379b45550244a0c2fd729a62a85 Author: Samuel Mehrbrodt AuthorDate: Tue Jan 29 07:30:03 2019 +0100 Commit: Samuel Mehrbrodt Com

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

2019-01-30 Thread Libreoffice Gerrit user
sw/source/filter/writer/wrtswtbl.cxx |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) New commits: commit f1f84cf7fae3c777908cfc5357a067db731367ac Author: Stephan Bergmann AuthorDate: Tue Jan 29 13:44:07 2019 +0100 Commit: Miklos Vajna CommitDate: Wed Jan 30 09:17:53 2019 +010

[Libreoffice-commits] core.git: chart2/qa oox/source

2019-01-30 Thread Libreoffice Gerrit user
chart2/qa/extras/chart2export.cxx | 16 +++- chart2/qa/extras/data/xlsx/tdf122915.xlsx |binary oox/source/export/chartexport.cxx |2 +- 3 files changed, 16 insertions(+), 2 deletions(-) New commits: commit 2eac095e2a672db180dc816350c1585a65245c7c Author: Bal

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

2019-01-30 Thread Libreoffice Gerrit user
writerfilter/source/rtftok/rtfcontrolwords.cxx |2 - writerfilter/source/rtftok/rtfcontrolwords.hxx | 29 - writerfilter/source/rtftok/rtfdocumentimpl.cxx |4 +-- writerfilter/source/rtftok/rtftokenizer.cxx| 17 ++ 4 files changed, 35 insertions(

  1   2   >