summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-12-04restore incorrectly removed codeLuboš Luňák1-0/+17
149a4d7566 removed NeedParallelReduction() even though the code should be there. I'm not sure about GenSlidingWindowFunction(), since the base class is a template, but better revert that one too. Also revert that part of 73e6a7975b that removed the subsequently no longer used functions. Change-Id: I932ffd58f9528ec840c4575078f8356640eb5420 Reviewed-on: https://gerrit.libreoffice.org/64249 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 27f27e107730cc2242df578fd3e6dbb1a7117066) Reviewed-on: https://gerrit.libreoffice.org/64468
2018-12-04add ^ (=power) and - (=unary minus) to OpenCLSubsetOpCodesLuboš Luňák2-1/+6
Both of these are trivial and quite common mathematical operations. Unary minus is a bit complicated in that unary '-' is the same symbol as binary '-' and so there needs to be a hack to expand the '-' from the list to both of the opcodes ocSub and ocNegSub. Change-Id: I556e20e161c22dc89919afffbf904c1ef1d552ff Reviewed-on: https://gerrit.libreoffice.org/64362 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit f7e7a59f38682dcd1f916c63fe8e2a437ecb5cf1) Reviewed-on: https://gerrit.libreoffice.org/64467
2018-12-04fix OpenCL PEARSON()Luboš Luňák1-8/+11
Some error checking, but also simply use "if(cond) code;" rather than "if(!cond) try-to-set-benign-values-that-will-break-things-nevertheless". Change-Id: Ic0c296273ba4c174dba5e96eadeeee4005988142 Reviewed-on: https://gerrit.libreoffice.org/64342 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit ac439c8c838a14db6ae02dff72dc8e8fffc333ef) Reviewed-on: https://gerrit.libreoffice.org/64466
2018-12-04make OpenCL SUM() treat empty cells properlyLuboš Luňák1-0/+6
The data vector may not have all values (if last cells are empty). In that case GetRefRowSize() is larger than GetArrayLength(). Other cases in this function had a similar check, this one was missing it for some reason (with the 'gid0' removed, since it's a fixed position). Change-Id: I01692b51d6ed22ee6db419508cacf556fb9e644d Reviewed-on: https://gerrit.libreoffice.org/64237 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit a0b059a37e775a466c6fb0043335aae4d3e93fbf) Reviewed-on: https://gerrit.libreoffice.org/64464
2018-12-04make sure FetchVectorRefArray() never triggers Interpret()Luboš Luňák9-9/+107
Test::testFormulaRefUpdateRange could trigger this, leading to recursion that wasn't handled properly by the code, since it wasn't expected to happen at late time (ScDependantsCalculator should have already caught it). This is all caused by the fact that FetchVectorRefArray() fetches also all rows before the given rows (to make the caching simpler I suppose). But that fetching could lead to Interpret() calls. Therefore, make ScDependantsCalculator in OpenCL mode check also all rows above. Change-Id: Iaecc105663df21b01443759287cec605470d34a5 Reviewed-on: https://gerrit.libreoffice.org/64236 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 99014ec9ded70a679220fe59e09ab4073512c249) Reviewed-on: https://gerrit.libreoffice.org/64463
2018-12-04restore functionality of OpenCL ParallelReductionVectorRef classLuboš Luňák1-0/+372
These functions were removed in 149a4d7566, although they quite clearly do serve a purpose, and then e9586cf0b5 removed the no longer used variables. Without this, ParallelReductionVectorRef class simply does not work. E.g. SUM(B1:B250) would not sum all the cells, but just one (testcase is Test::testFormulaRefUpdateRange with OpenCL forced). Change-Id: Iad1aeba2fbae2b4fc1d4236030adbb9ce6d972a1 Reviewed-on: https://gerrit.libreoffice.org/64235 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 1b489b74fe28007749bec8a3ebd56901a7652734) Reviewed-on: https://gerrit.libreoffice.org/64462
2018-12-04fix OpenCL PRODUCT when there are actually no valuesLuboš Luňák1-8/+19
PRODUCT() when there are no arguments (or all cells are empty) is 0. Change-Id: I4bcb9afe84d08833526255da0c61f6847d68ea36 Reviewed-on: https://gerrit.libreoffice.org/64232 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 353bc9db255ca802c70b15e4d5d2e2fcbcee4fe8) Reviewed-on: https://gerrit.libreoffice.org/64461
2018-12-04make sure opencl is not used from withing ocTableOpLuboš Luňák1-0/+4
Table operations do some tricks with reusing a cell with different values, and this confuses opencl handling, which operates on a group as a whole. Possibly relevant only with SC_FORCE_CALCULATION=opencl, sc_subsequent_filters_test fails in testDataTableOneVarXLSX(). Change-Id: I55e0d238061c8a45a2388ccf6c769ff6a1fddbcc Reviewed-on: https://gerrit.libreoffice.org/64230 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 43922f1aaa3d7bced4b02f6662c5c12ee698132f) Reviewed-on: https://gerrit.libreoffice.org/64460
2018-12-04fix opencl INTRATELuboš Luňák1-3/+2
No idea why somebody thought pow() would be better than a mere division. Without this the unittest fails because of a slightly different result. Change-Id: Ibbde8b872049be310ac98389634aab6eab154ca6 Reviewed-on: https://gerrit.libreoffice.org/64229 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 54ea2630358c9881d7efac592155924bd152db71) Reviewed-on: https://gerrit.libreoffice.org/64459
2018-12-04sync PI value used in opencl SQRTPI to the one used in scaddinsLuboš Luňák1-1/+1
Otherwise the sqrtpi unittest fails in opencl mode. This value is less precise, but consistency should be more important here, not to mention that float doesn't have that high precision anyway. Change-Id: I8e85b7029d33932c81009e5d48e0fe2164c68dcf Reviewed-on: https://gerrit.libreoffice.org/64228 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 62b0bcfd85eb34ddd96d82c9f96a50588b9c4d80) Reviewed-on: https://gerrit.libreoffice.org/64458
2018-12-04treat second argument of opencl's dollarde/dollarfr as integerLuboš Luňák1-4/+4
That's how the scaddins implementation works, and the unittests fail in opencl mode without this. Change-Id: I08ea7dd0a0222408abf899d2da649be53f314a4c Reviewed-on: https://gerrit.libreoffice.org/64227 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 3441edd25e2f006db46a6c9f2351558910c6a614) Reviewed-on: https://gerrit.libreoffice.org/64457
2018-12-04disable opencl implementation of AMORDEGRCLuboš Luňák1-2/+2
It fails sc_financial_functions_test with SC_FORCE_CALCULATION=opencl. Change-Id: If43928df8b1382eb7518fc99b6eee1759d822058 Reviewed-on: https://gerrit.libreoffice.org/64225 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 4a9ace13b905189063f6792c9490a570e0eae59b) Reviewed-on: https://gerrit.libreoffice.org/64456
2018-12-04avoid crash in opencl AMORDEGRC and AMORLINT argument handlingLuboš Luňák1-20/+34
The last argument is optional and defaults to 0 according to docs. Change-Id: I2e3aeb1da13b119e03e5bca18a63447e0fdc77fa Reviewed-on: https://gerrit.libreoffice.org/64224 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 07e15bb76225d259a9be4c7a47b2af0c6cc5b033) Reviewed-on: https://gerrit.libreoffice.org/64455
2018-12-04add a macro for detecting incorrect number of parameters in openclLuboš Luňák3-0/+29
Change-Id: Id8253537025cc373c1ff183c0059158489e11750 Reviewed-on: https://gerrit.libreoffice.org/64239 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 433b1fdd3fc588cb542bb834117752dbef4e8236) Reviewed-on: https://gerrit.libreoffice.org/64469
2018-12-04Infobar showing donation alternating with getinvolvedheiko tietze4-3/+44
Change-Id: Ia103201667c3469071f19450589bd22faf3ae80e Reviewed-on: https://gerrit.libreoffice.org/63883 Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com> Tested-by: Heiko Tietze <tietze.heiko@gmail.com> (cherry picked from commit 7f38b5829c16f979268959272922e5ff86802da8) Reviewed-on: https://gerrit.libreoffice.org/64513 Tested-by: Jenkins
2018-12-04NB: update writer groupedbar_fullandreas kainz1-728/+754
Change-Id: I4fffde4c7ee687af1eb1c7f5eb28be16bb369e28 Reviewed-on: https://gerrit.libreoffice.org/64386 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 88b46b8383019d331ae0ddc76afcd5739f511936) Reviewed-on: https://gerrit.libreoffice.org/64508
2018-12-04weld OfaSmartTagOptionsTabPageCaolán McNamara3-82/+114
Change-Id: I34b6c654e65fa827e8efc8fd6ba97dc73d15df17 Reviewed-on: https://gerrit.libreoffice.org/64505 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-04weld OfaAutocorrOptionsPageCaolán McNamara3-53/+108
Change-Id: I4bf626f61c0d1eb404f99bae4d1e3bf521e4878f Reviewed-on: https://gerrit.libreoffice.org/64506 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-04weld OfaQuoteTabPageCaolán McNamara4-330/+279
Change-Id: I7da18597e85a03d96197f32862686a49f9d8e153 Reviewed-on: https://gerrit.libreoffice.org/64504 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-04Resolves: tdf#116868 add Hausa (Nigeria) [ha-Latn-NG] locale dataEike Rathke3-1/+338
Derived from ha_Latn_GH.xml with changes according to CLDR and https://ssl.icu-project.org/icu-bin/locexp?d_=en&_=ha_NG Change-Id: Id7325ab9a2e17d0d5fdad45ce675987695a90ef0 Reviewed-on: https://gerrit.libreoffice.org/64454 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com> (cherry picked from commit f26ecd353327b206225f85705c99b55b2baf8699) Reviewed-on: https://gerrit.libreoffice.org/64490 Tested-by: Jenkins
2018-12-04NB: update impress groupedbar_compactandreas kainz1-187/+205
Change-Id: Ibac6bddcd683792a9a520e1bd9269b130321e181 Reviewed-on: https://gerrit.libreoffice.org/64384 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 78c2c59c1b93f956e268b3aaeb89f5e51d5959d7) Reviewed-on: https://gerrit.libreoffice.org/64500
2018-12-04NB: update calc groupedbar_fullandreas kainz1-1093/+536
Change-Id: I803e82841898ee9507a1874d0436de69ce28f55b Reviewed-on: https://gerrit.libreoffice.org/64387 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 7615df756179771225964174c4a06e95284d0bda) Reviewed-on: https://gerrit.libreoffice.org/64501
2018-12-04Icons: sync WriterCommands PasteSpecial with other onceandreas kainz1-0/+3
Change-Id: I995be37ded721d64ef018a9ec16fdc439293d386 Reviewed-on: https://gerrit.libreoffice.org/64380 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 3bc1a951375daaa29ce266b1450a86d9f4cfbff8) Reviewed-on: https://gerrit.libreoffice.org/64498
2018-12-04NB: change macro selection in writer notebookbarandreas kainz1-35/+19
Change-Id: I64d580096783300179ab10ecde270544bc561d54 Reviewed-on: https://gerrit.libreoffice.org/64382 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 7c2e9a3b56c1607a47521e7803b80d793eaf0f97) Reviewed-on: https://gerrit.libreoffice.org/64494
2018-12-04weld OfaSwAutoFmtOptionsPageCaolán McNamara12-257/+399
Change-Id: Ia88fe2562dd87b33fdec0081a3adf27c8d10f407 Reviewed-on: https://gerrit.libreoffice.org/64474 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-04Resolves: tdf#120977 intended default button overriddenCaolán McNamara3-1/+39
for those cases where the built-in buttons are not inserted Change-Id: Ibb091832c097a15dc22a7994d94f8db6a4e47520 Reviewed-on: https://gerrit.libreoffice.org/64492 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-04NB update writer grouped_compactandreas kainz1-966/+566
Change-Id: Ie34f51e2540cfb2f0623402c2d69ac06f60fb9e4 Reviewed-on: https://gerrit.libreoffice.org/64383 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 35d9c535707dd3c77de9591b194c98ef04d211c0) Reviewed-on: https://gerrit.libreoffice.org/64495
2018-12-04NB: update calc groupedbar_compactandreas kainz1-1278/+507
Change-Id: Ie2b921612352dbb83477a4d9f6d70795a4703664 Reviewed-on: https://gerrit.libreoffice.org/64381 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 75827a019c88d5be4608f5fde7e59c87cb2a6f92) Reviewed-on: https://gerrit.libreoffice.org/64493
2018-12-04Icons: sync DrawImpress PasteSpecial with other onceandreas kainz1-0/+3
Change-Id: Iafe1261dc3415121aa08f1ad4dad0cd9cc008ac8 Reviewed-on: https://gerrit.libreoffice.org/64379 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com> (cherry picked from commit 12707b4f48f41d24b5863b41b7a3d27219e29b27) Reviewed-on: https://gerrit.libreoffice.org/64488
2018-12-03Revert "sw_redlinehide_3: apparently a live SwNodeNum always has a parent"Michael Stahl1-2/+0
This reverts commit 6eebecf39a9e634cccad50ede29d281a6bfd24c8. The problem is that *during* RemoveFromList(), the IsInList() is called after the parent pointer is reset to null. e.g. during export of ooo67907-1.doc to .doc. SwTextNode::IsInList() const (this=0x57a3b30) at sw/source/core/txtnode/ndtxt.cxx:4352 SwTextNode::NumRuleChgd() (this=0x57a3b30) at sw/source/core/txtnode/ndtxt.cxx:2863 SwNodeNum::NotifyNode() (this=0x5804f80) at sw/source/core/SwNumberTree/SwNodeNum.cxx:211 SwNumberTreeNode::Notify() (this=0x5804f80) at sw/source/core/SwNumberTree/SwNumberTree.cxx:1068 SwNumberTreeNode::NotifyInvalidChildren() (this=0x52f1820) at sw/source/core/SwNumberTree/SwNumberTree.cxx:1088 SwNumberTreeNode::NotifyInvalidChildren() (this=0x57e4ab0) at sw/source/core/SwNumberTree/SwNumberTree.cxx:1111 SwNumberTreeNode::RemoveChild(SwNumberTreeNode*) (this=0x52f1820, pChild=0x5804f80) at sw/source/core/SwNumberTree/SwNumberTree.cxx:618 SwNumberTreeNode::RemoveMe() (this=0x5804f80) at sw/source/core/SwNumberTree/SwNumberTree.cxx:648 SwListImpl::RemoveListItem(SwNodeNum&) (rNodeNum=...) at sw/source/core/doc/list.cxx:151 SwList::RemoveListItem(SwNodeNum&) (rNodeNum=...) at sw/source/core/doc/list.cxx:251 SwTextNode::RemoveFromList() (this=0x57a3b30) at sw/source/core/txtnode/ndtxt.cxx:4328 (anonymous namespace)::HandleSetAttrAtTextNode::HandleSetAttrAtTextNode(SwTextNode&, SfxItemSet const&) (this=0x7ffffcc90aa0, rTextNode=..., rItemSet=SfxItemSet of pool 0x51799b0 with parent 0x0 and Which ranges: [(72, 72)] = {...}) at sw/source/core/txtnode/ndtxt.cxx:4751 SwTextNode::SetAttr(SfxItemSet const&) (this=0x57a3b30, rSet=SfxItemSet of pool 0x51799b0 with parent 0x0 and Which ranges: [(72, 72)] = {...}) at sw/source/core/txtnode/ndtxt.cxx:4917 Change-Id: I5a2775f397da171cde23cbf42f7e95da958987e8 Reviewed-on: https://gerrit.libreoffice.org/64448 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> (cherry picked from commit b3e77dd93f2305f09e89d9a23a9b4404d7c796ba) Reviewed-on: https://gerrit.libreoffice.org/64450 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-03sw: convert assert(bSelected out of sync) to SAL_WARN for nowMichael Stahl2-2/+2
This evidently happens sometimes, but when it does it it's impossible to reproduce... Let's use SAL_WARN for now. Change-Id: Id724fd52060bfae45f9eeb16163ddfc94e53af03 Reviewed-on: https://gerrit.libreoffice.org/64447 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> (cherry picked from commit d1138d72ed4f5c2ada2dd53f4b091964d8a284e6) Reviewed-on: https://gerrit.libreoffice.org/64451
2018-12-03Revert "Resolves: tdf#112696 survive missing SwDrawContact"Caolán McNamara1-12/+5
This reverts commit 2cb9c55e4da18fbfb2f578c46d094e6ca0d56fa1. Change-Id: I2d276d0171103d45be2cd66990fb5cf8d2fb4161 Reviewed-on: https://gerrit.libreoffice.org/64178 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit 30a07561c19da050c7ca0a7a67868a6f6229a449) Reviewed-on: https://gerrit.libreoffice.org/64257
2018-12-03weld ScShareDocumentDlgCaolán McNamara19-203/+158
Change-Id: I790f957c9ebc6d87a94a355c30215245aaabeb30 Reviewed-on: https://gerrit.libreoffice.org/64421 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-02Revert "Revert "Notebookbar:Disabled appearence of context toolbars""Mike Kaganski1-1/+2
This reverts commit 9a6169529eb687190531225bfe9fef850325ee9e now that proper fix for both tdf#121591 and tdf#119945 is pushed - see commit 0a36be3fee1b4f1b47b55a64668b6aa99896ab24. Change-Id: Ia44510d427e0626a5f566210247db8848653f8e2 Reviewed-on: https://gerrit.libreoffice.org/64279 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> (cherry picked from commit f3ea5e21bea80004b04edbf0287d4a2e1aaef5d0) Reviewed-on: https://gerrit.libreoffice.org/64316 Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
2018-12-02tdf#121591, tdf#119945: ModuleManager::identify throws for embedded modulesMike Kaganski1-1/+10
Change-Id: Ief1a664fdf26c837fd55c9a236f45aa045067309 Reviewed-on: https://gerrit.libreoffice.org/64256 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> (cherry picked from commit 0a36be3fee1b4f1b47b55a64668b6aa99896ab24) Reviewed-on: https://gerrit.libreoffice.org/64280 Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
2018-12-02Resolves: tdf#121810 wrong column orderCaolán McNamara2-2/+8
Change-Id: Ie82c47ea772b6eb5fc7b84426bb3c1cc98dc9c14 Reviewed-on: https://gerrit.libreoffice.org/64411 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-02Related: tdf#121810 pass suitable message dialog parent aroundCaolán McNamara4-5/+13
Change-Id: I1a27d82ef94f1052171f7a3f6c5c80c0ec66b547 Reviewed-on: https://gerrit.libreoffice.org/64410 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01Related: tdf#121721 use premultiply unpremultiply tablesCaolán McNamara1-16/+58
for tdf#121721 this brings the time down between pressing F5 and seeing the image from 4 seconds to 1.4 seconds Change-Id: I8e7f15e5126218b040e96f9143827ff788b4fb51 Reviewed-on: https://gerrit.libreoffice.org/64403 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01can pass window directly to CreateTemplateDialog nowCaolán McNamara4-5/+5
Change-Id: Ic7ff388a338b2b90f4509c807f7ffcb34e468edb Reviewed-on: https://gerrit.libreoffice.org/64394 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01Update git submodulesMike Kaganski1-0/+0
* Update helpcontent2 from branch 'libreoffice-6-2' - REGEX: correct ICU URL to use http, not https (which seems unavailable) Change-Id: Iaeed0d81dc88418c2bffab730fd682ca8cb3b101 Reviewed-on: https://gerrit.libreoffice.org/64313 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com> (cherry picked from commit f9566b6655aad0408724c4df65178f43c3e3d4f8) Reviewed-on: https://gerrit.libreoffice.org/64400
2018-12-01weld SwGlossaryGroupDlgCaolán McNamara7-259/+266
Change-Id: I142123b474e0e35f6da375977e33d40e0ad39054 Reviewed-on: https://gerrit.libreoffice.org/64395 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01weld OfaAutoCompleteTabPageCaolán McNamara11-259/+289
Change-Id: I84f051fd1dc127663fd510c81addb0fd0cdc2c26 Reviewed-on: https://gerrit.libreoffice.org/64393 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01turn on hori scrollbar if WB_AUTOHSCROLL set and content doesn't fitCaolán McNamara1-5/+4
Change-Id: I8812d6d5ccce6f84298a4c978c50f1e84653c559 Reviewed-on: https://gerrit.libreoffice.org/64392 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01Unit test for leading and trailing group separator charactersEike Rathke1-0/+56
Change-Id: I10ff8b59ba707d5795338ff5e9037473d31337bc Reviewed-on: https://gerrit.libreoffice.org/64361 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com> (cherry picked from commit d43e48cabce7fa8235207288e66a06fce1c58975) Reviewed-on: https://gerrit.libreoffice.org/64369
2018-12-01KJ & elementary: Update master objects & master bg, etcRizal Muttaqin55-7/+18
Change-Id: I3f63ecc13e830ae9a0062b34256f3c3f73ef7e5e Reviewed-on: https://gerrit.libreoffice.org/64378 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id>
2018-12-01weld OfaAutocorrExceptPageCaolán McNamara9-246/+215
Change-Id: I735ca7d70045b278d6b885cc2de35bf76885b487 Reviewed-on: https://gerrit.libreoffice.org/64390 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01src/dest widget args reversedCaolán McNamara1-2/+3
Change-Id: I60062d5111bbdab4f212770fe33992781254f733 Reviewed-on: https://gerrit.libreoffice.org/64391 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-12-01A leading or trailing group separator character is not a group separatorEike Rathke2-4/+24
Also a group separator character followed by a non-digit is not. Change-Id: Id57e43fe7692706c5532fb05ad394224265c2750 Reviewed-on: https://gerrit.libreoffice.org/64358 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com> (cherry picked from commit a4146c38a07ff51b37d40c2e953f54b0a746a8b7) Reviewed-on: https://gerrit.libreoffice.org/64367
2018-12-01KJ & elementary: tdf#121581 change Organize Dialogs to Organize Macros; add ↵Rizal Muttaqin32-1122/+19
Insert Layer Change-Id: I25bded0e5c1340ca61c747b0125825ed13a9150f Reviewed-on: https://gerrit.libreoffice.org/64349 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> (cherry picked from commit 262ba64960f6295e901dfeaa1de971e090a8a1dc) Reviewed-on: https://gerrit.libreoffice.org/64368
2018-12-01i#32345 Support a matrix of rank argument for LARGE()/SMALL()Takeshi Abe5-23/+141
This is a followup of e22ab5e6f6b0ea49231ca454a567133996306116. Change-Id: I7052e113173204f7cfcd40622f52c5d4e14b3aa9 Reviewed-on: https://gerrit.libreoffice.org/64139 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com> (cherry picked from commit e4c2d0bb57ab8ea8f5c400d103d01376b8140f22) Reviewed-on: https://gerrit.libreoffice.org/64364