Commit Graph

434222 Commits

Author SHA1 Message Date
Stephan Bergmann
7a13fd8d6c -Werror,-Wunused-private-field
Change-Id: Ibdc93b2afb3949fd25f14666f6eb3a4c1462f791
2019-03-04 11:16:45 +01:00
Michael Stahl
60ea01af8c tdf#123313 sw: workaround Undo problem with ToX Update
The problem is that when ToX is updated, CrossRefHeadingBookmarks will
be created for the heading nodes, and SwUndoInsBookmark will be created
at that time, but then nodes will be created for later entries in the
ToX and if the heading is below the ToX then the node index in
SwUndoInsBookmark will not match the node index of the
CrossRefHeadingBookmark.

Thus SwHistoryBookmark::IsEqualBookmark() will cause the mark to be
skipped during Undo instead of deleted, and then it can cause trouble.

Work around that by having SwHistoryBookmark::IsEqualBookmark() not
check the position if it's a CrossRefHeadingBookmark.

Change-Id: I9277978844837accdda35195a863c6163a839b6e
Reviewed-on: https://gerrit.libreoffice.org/68596
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
2019-03-04 11:10:37 +01:00
Michael Stahl
b891226dce tdf#122892 sw: fix disappearing rows after table split
After fixing the infinite loop, the content of the merged table cell
with rowspan 3 is invisible, because its SwCellFrame and the SwRowFrame
containing it both have a height of 0.

This is due to funny code in SwTabFrame::Split(), which checks the bRet
flag before setting it to its final value, thus skipping the
lcl_AdjustRowSpanCells() call.

Change-Id: I96f9e9efdd5cae3a61da07995b8c31042fc59125
Reviewed-on: https://gerrit.libreoffice.org/68403
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
2019-03-04 11:09:19 +01:00
Michael Stahl
b7d4418c30 tdf#122892 sw: fix IsPrepWidow() loop in SwTextFrame::CalcFollow()
The bugdoc loops on calculating the follow of SwTextFrame 560, the one
containing "Hiermit nehme ich das Angebot an" in a cell with rowspan 3,
while the table is being split and its first row (also now its last
i.e. split row) is being formatted.

Loop in CalcFollow() because the follow is in the same upper frame as
its master and cannot move forward, so the 2nd call to pMyFollow->Calc()
after pMyFollow->Prepare() always sets the SetPrepWidows() flag on the
master and in that case the loop never terminates.

The problem is that the check in WidowsAndOrphans::FindWidows() of
GetThisLines() uses stale cached data - the value returned is 4, but
the frame contains fewer lines at that point and doesn't have lines to
spare for the follow; the cached value is only updated at the end of
SwTextFrame::Format().  Fix it by calling ChgThisLines() here.

But this fix only helps for the first SwTextFrame in a cell; the next
one with id 561 loops in a similar way.  The problem then is that
SwTextFrame::PrepWidows() always calls SetPrepWidows(), even if the
Orphan-rule of the frame prevents it from giving lines to the follow.
Fix this by calling SetPrepWidows() only if lines are removed.

This also helps for the 2 attachments of tdf#118104.

(regression from commit 18765b9fa7
 particularly the change in SwFrame::IsMoveable()
 in the sense that it didn't loop before but there isn't anything
 obviously wrong with this commit)

Change-Id: Ia1e5928a6510e68520b29eb265e26ffd0627c52e
Reviewed-on: https://gerrit.libreoffice.org/68402
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
2019-03-04 11:09:02 +01:00
Regina Henschel
3abe1e83c1 tdf#121845 rework custom shape path command U and T
The patch covers several errors, see comments in the bug report.

Change-Id: I6cdaf3e8951dab21b314ef61e12ffa3b3ee481dc
Reviewed-on: https://gerrit.libreoffice.org/68029
Tested-by: Jenkins
Reviewed-by: Regina Henschel <rb.henschel@t-online.de>
2019-03-04 09:51:17 +01:00
Miklos Vajna
0aa8fbe229 sw: prefix members of SwBlockCursor, SwAutoCompleteWord and TransWrp
Change-Id: I993ee72f9e162a72b1d4e89d98763fe0d2dee4d4
Reviewed-on: https://gerrit.libreoffice.org/68662
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
2019-03-04 09:43:15 +01:00
Katarina Behrens
5feff994b4 Don't include shape/object name when exporting to tagged PDF
most of the time shapes have generated names such as 'Shape 42', those
have ~no added value so let's not include them in Alt text

Change-Id: I30314d5e901e11722e609dbf7ceddf74c5ed9707
Reviewed-on: https://gerrit.libreoffice.org/68520
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-03-04 08:55:55 +01:00
Noel Grandin
28239c4043 simplify UNO getTypes methods
Change-Id: Ia8b07edec54527fb4904536fabb03a18e8452550
Reviewed-on: https://gerrit.libreoffice.org/68659
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2019-03-04 08:52:39 +01:00
Andrea Gelmini
85b7e7fdd7 Removed STR_SVT_ACC_LISTENTRY_SELCTED_STATE
It passed "make check" on Linux.

Just to spot it to devs. It seems to me it's not
used anymore.

Change-Id: I9549e4895d2e89a61d478ff26e142a4ddbd976df
Reviewed-on: https://gerrit.libreoffice.org/68616
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-03-04 08:39:45 +01:00
Noel Grandin
c9bb48386b Revert "new loplugin typedefparam"
This reverts commit 9865440d21.

This is not ready to land yet, seems like the latest update
of the logic reveals a bunch more places I need to fix before it can land.
2019-03-04 08:56:11 +02:00
Noel Grandin
9865440d21 new loplugin typedefparam
verify that parameters use the exact same typedef-names (if any)
in definition and declaration

Change-Id: I55d2817f599b0253904dce2d35a1a93967e15a77
Reviewed-on: https://gerrit.libreoffice.org/68439
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2019-03-04 07:32:43 +01:00
Andrea Gelmini
e7f71c7ab6 Fix typo
Change-Id: I343b4a34b98351a3573d99fb65a624ff57d88cad
Reviewed-on: https://gerrit.libreoffice.org/68658
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
2019-03-04 05:57:33 +01:00
Stephan Bergmann
923c82a966 Avoid unnecessary conversion to sal_uInt16
(the negated value is ultimately passed to a short parameter of
SvxLRSpaceItem::SetTextFirstLineOfstValue.  This change has no acutal effect on
the result, but silences Clang -fsanitize=implicit-signed-integer-truncation
warnings.

Change-Id: Ieefab13b9594fb6e19953c5f0ca22b36141ff986
Reviewed-on: https://gerrit.libreoffice.org/68648
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-03-03 23:20:35 +01:00
Caolán McNamara
5e73afe96a can rename CuiMacroEventListBox back to MacroEventListBox now
Change-Id: I2f88488e7bb931238a31eb62f616c33c60c7ec2e
Reviewed-on: https://gerrit.libreoffice.org/68650
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-03 22:13:38 +01:00
Caolán McNamara
1d9c7ec1f1 weld SvxMacroAssignDlg
and SvxEventConfigPage, SvxMacroTabPage_, SvxMacroTabPage

Change-Id: I98a2e71794f098015927dc7cd7ec4e258f56e703
Reviewed-on: https://gerrit.libreoffice.org/68649
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-03 22:13:26 +01:00
Tor Lillqvist
def5287c1e tdf#123821: Correct accidental overlap with IIDs used in Calc
These are used for functionality that hasn't really been tested yet,
that I added right before moving on to other things last Spring, I
guess, which is why I hadn't noticed.

Change-Id: I1df26c5dff62269315b1a7eaaf574f7e38c452f6
2019-03-03 23:11:21 +02:00
Jens Carl
bbc5347be7 Add XServiceInfo tests to ScAnnontationObj
Change-Id: I866b057f768b29f14f7eaa75bc8db3591ddca836
Reviewed-on: https://gerrit.libreoffice.org/68635
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
2019-03-03 19:46:58 +01:00
Jens Carl
167c5f9aff tdf#45904 Move XTextRange Java tests to C++
Move XTextRange Java tests to C++ for ScAnnotationObj
(also fixes i109517).

Change-Id: Id7e45d9f1159b45fb267cb28dc875b62eae12e24
Reviewed-on: https://gerrit.libreoffice.org/68634
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
2019-03-03 19:46:33 +01:00
Jens Carl
33048db2b4 tdf#45904 Move XSimpleText Java tests to C++
Move XSimpleText Java tests to C++ for ScAnnotationObj
(this also fixes i109517).

Change-Id: Ieed0c94ed7a426c921c099a1edb520cbfd830656
Reviewed-on: https://gerrit.libreoffice.org/68632
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
2019-03-03 19:45:50 +01:00
Arkadiy Illarionov
5af9e26ae8 Simplify containers iterations in cppcanvas, cppu, cppuhelper
Use range-based loop or replace with STL functions

Change-Id: I72bf7cdb632c04e2fc8d4f7ab85cb6571222aa07
Reviewed-on: https://gerrit.libreoffice.org/68636
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2019-03-03 16:27:08 +01:00
Dennis Francis
20b1a4589e More test cases for FOURIER formula
This adds test cases for N(data length) for non powers of 2.
This tests real and complex input cases. It also tests polar and
non-polar output case. The reference(expected) numbers were obtained
using fft() of Matlab R2018b. Finally the inverse transform is
compared is compared with original inputs for correctness.

Change-Id: Ibc13fb5ce900facd3fb0896e85a4e0d1694ad7f3
Reviewed-on: https://gerrit.libreoffice.org/68640
Tested-by: Jenkins
Reviewed-by: Dennis Francis <dennis.francis@collabora.com>
2019-03-03 16:16:08 +01:00
Dennis Francis
15e89e7cc9 FOURIER : use Bluestein's algorithm for N != 2^k
For inputs that are not an even power of 2, use
Bluestein's algorithm[1] to match the output of
fft()/ifft() in Octave/Matlab() in those cases.
This algorithm is slower than radix-2 FFT algorithm
but still has the asymptotic time complexity of
O(N lg(N)).

This patch also introduces considerable speedup in case
of real valued inputs. DFT of a real valued input of
length N can be computed using any DFT algorithm with
a N/2 length complex valued input, provided we do some
pre and post processing[2].

All implementations in this patch are written from scratch
using the below theory references.

[1] https://en.wikipedia.org/wiki/Chirp_Z-transform#Bluestein.27s_algorithm
[2] Jones, K., 2010. Fast Solutions to Real-Data Discrete Fourier Transform.
    In The Regularized Fast Hartley Transform (pp. 15-25). Springer, Dordrecht.

---------------------------
Below are some perf measurements for various input cases :-

Timing numbers are only for the DFT computation part and does not include
the time for writing data to the spreadsheet model. We don't use threading
yet, so these are numbers for just one cpu-core.

Exact Powers of 2
=================

Real Input size,Time (ms)
32768,2
65536,4
262144,21
1048576,185

Complex Input size, Time(ms)
32768,2
65536,5
262144,30
1048576,400

Even non-powers of 2 : 2^k - 2
================================

Real Input size,Time (ms)
32766,8
65534,20
262142,105
1048574,1440

Complex Input size, Time(ms)
32766,15
65534,36
262142,313
1048574,3332

Odd non-powers of 2 : 2^k - 1
================================

Real Input size,Time (ms)
32767,16
65535,39
262143,313
1048575,2729

Complex Input size, Time(ms)
32767,16
65535,38
262143,309
1048575,2703

Change-Id: Iccc31455e526ee5e6d18c20812dfa53defcf869f
Reviewed-on: https://gerrit.libreoffice.org/68639
Tested-by: Jenkins
Reviewed-by: Dennis Francis <dennis.francis@collabora.com>
2019-03-03 16:15:44 +01:00
Mike Kaganski
4037d4416c HELPDELAY_SHORT is unused - get rid of related defines, too
It is unused since commit bd45c56a07.

Change-Id: I3d70b0cc112a6f4a8f57a65831cb0a46ac36514a
Reviewed-on: https://gerrit.libreoffice.org/68641
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
2019-03-03 14:45:12 +01:00
Stephan Bergmann
16e8ae5b0d Make additional OTypeCollection::getTypes overload LIBO_INTERNAL_ONLY
(added recently with d559c28e9e "expand out
IMPL_XTYPEPROVIDER_START macro"), for extra compatibility safety.  (At least
MSVC exports non-inline versions of such CPPUHELPER_DLLPUBLIC inline functions
from the cppuhelper DLL.)  The original getTypes (added back now with
<https://gerrit.libreoffice.org/#/c/68549/> "revert ABI change from 'expand out
IMPL_XTYPEPROVIDER_START macro'") had been a non-const member function ever
since at least b525a3115f "initial import",
presumably by accident.  (Whether or not to return a reference is an orthogonal
issue.  With the newly added overload being LIBO_INTERNAL_ONLY, it is presumably
fine to have it return a reference for now and see whether that causes any
issues with lifetimes of temporary OTypeCollection instances.)

Change-Id: If6abcf53b46b972204598774fed7cdd34d78440b
Reviewed-on: https://gerrit.libreoffice.org/68637
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-03-03 14:40:39 +01:00
Noel Grandin
bf0150eae7 revert ABI change from "expand out IMPL_XTYPEPROVIDER_START macro"
in commit d559c28e9e, instead add a
separate const method

Change-Id: If156dd07e77da2efe72c92198960311399151a9d
Reviewed-on: https://gerrit.libreoffice.org/68549
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-03-03 14:40:27 +01:00
andreas kainz
1b587efd99 Sifr icon theme update
Change-Id: I5c1baaf29d4649da983df6cff9c0f29e283f898e
Reviewed-on: https://gerrit.libreoffice.org/68631
Tested-by: Jenkins
Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2019-03-03 11:05:59 +01:00
Stephan Bergmann
d78f671e71 yyinput() returns int
Change-Id: I2e1958bff9778bab65b5c972bc9e0721a86546f5
Reviewed-on: https://gerrit.libreoffice.org/68630
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-03-03 11:03:21 +01:00
Stephan Bergmann
2449bf48c4 Remove redundant bitwise and when converting from sal_uInt32 to sal_Int32
...which has no effect on the result, but silences benign Clang
-fsanitize=implicit-signed-integer-truncation warnings

Change-Id: I0953914a35f2a8c4caa6f75d4918e3b3366d07e8
Reviewed-on: https://gerrit.libreoffice.org/68628
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-03-03 11:03:06 +01:00
Stephan Bergmann
e1ec5eb6dc Extend cast to whole expression
...which has no effect on the result, but silences benign Clang
-fsanitize=implicit-signed-integer-truncation warnings

Change-Id: Ic2cf38466f12462d67ceb6268d5197e13cc6143a
Reviewed-on: https://gerrit.libreoffice.org/68627
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-03-03 11:02:56 +01:00
Andrea Gelmini
9b6a377e77 Fix typo
Change-Id: I405a69e54efef1cf86e9039659fd63573763d090
Reviewed-on: https://gerrit.libreoffice.org/68633
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-03-03 09:30:37 +01:00
Caolán McNamara
d4e3b48ee4 OSQLNameEdit not needed as a buildable anymore
Change-Id: I5a70db03ce8846ab56535b3f044d4519c4eeb4b1
Reviewed-on: https://gerrit.libreoffice.org/68626
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-02 22:40:57 +01:00
Caolán McNamara
c1e8e5cf19 drop newly unused OSQLNameComboBox
Change-Id: I5de991355cc472d8ee1bc9f55713befca691e096
Reviewed-on: https://gerrit.libreoffice.org/68625
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-02 22:40:45 +01:00
Caolán McNamara
884df9f66c weld OSaveAsDlg
Change-Id: I745cdca8b79308db27ccd4fd2c9d4b557e3f6fce
Reviewed-on: https://gerrit.libreoffice.org/68624
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-02 22:40:19 +01:00
andreas kainz
7823ea5a6b sync swxform ui files with swriter ui files
Change-Id: Ie1e4a843e72351fabefba6f3a3c3fc9c35b40c46
Reviewed-on: https://gerrit.libreoffice.org/68606
Tested-by: Jenkins
Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2019-03-02 19:43:27 +01:00
Justin Luth
361abbf803 filter\ww8 export: don't spam RTL if ParaStyle defined
If the paragraph itself inherits BiDi from the environment,
this just means that it gets the value of the paragraph style.
If paraStyle is defined, then we don't need to spam the bidi
property, since it ought to naturally inherit it.

I can only see two possible problems. Either my logic is wrong,
or else import might not always take the paragraph style
into account (for determining the meaning of justify for example).

I want to start spamming justify in the case where the BiDi is not
specified but is inherited from the environment (page style
or AppLanguage). Separating this into multiple patches
will help for debugging in case of any regressive tendencies.

related to tdf#98620.

Change-Id: I36bc63e6659a4b491b5c6f2c99c72ba5bb715a07
Reviewed-on: https://gerrit.libreoffice.org/66921
Tested-by: Jenkins
Reviewed-by: Justin Luth <justin_luth@sil.org>
2019-03-02 17:16:14 +01:00
Caolán McNamara
c268527f73 weld AddressBookSourceDialog
Change-Id: I3e83c41db04268b7370fdb7370f5b630419c6d4e
Reviewed-on: https://gerrit.libreoffice.org/68622
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-02 17:06:38 +01:00
Tor Lillqvist
21233e2960 Use comphelper::getProcessComponentContext()
The context in the mxContext member does not seem to be usable for
what we need it for here. Using what
comphelper::getProcessComponentContext() returns works better. Let's
hope it has no unintended side-effects.

This likely makes the mxContext member unused, but I did not bother
removing it yet, to keep this commit minimal.

Change-Id: Ic048683b066af7952e2e84b03ea306e7daaba259
Reviewed-on: https://gerrit.libreoffice.org/68592
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
2019-03-02 16:52:46 +01:00
Tor Lillqvist
fbee19602e Use sal_Int32 for the index as it comes in as a LONG at least from VBScript
Change-Id: If39054148f72211eae3c897675708aab58f425b2
Reviewed-on: https://gerrit.libreoffice.org/68593
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
2019-03-02 16:52:26 +01:00
LibreOfficiant
64e9fdf54c Update git submodules
* Update helpcontent2 from branch 'master'
  - minor correction
    
    Change-Id: I900e7175a028599f320d80ff30822fcad55d9046
    Reviewed-on: https://gerrit.libreoffice.org/68620
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2019-03-02 16:00:44 +01:00
Mike Kaganski
e9c9848d30 Use implCopySequence to avoid overhead of non-const operator[]
Change-Id: I1e2385c6c7270f7bac9748a61fbf56e3e4246e1c
Reviewed-on: https://gerrit.libreoffice.org/68621
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2019-03-02 15:46:27 +01:00
László Németh
7a810d6a9f tdf#116084 DOCX track changes: fix w:del within w:ins
Instead of showing the tracked deletion as tracked
insertion, losing the original and actual text contents,
now w:del within w:ins is imported as tracked deletion
correctly.

Change-Id: I40694a3a73ad4cd443254167462520c17b1bd484
Reviewed-on: https://gerrit.libreoffice.org/68478
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
2019-03-02 14:33:28 +01:00
Caolán McNamara
6ca4bd3ce9 ofz#13431 fix build
Change-Id: I29c271188dc96205e335dbf8d7b11a3711e6e634
2019-03-02 13:07:50 +00:00
Caolán McNamara
91548e11b3 weld SvxIconSelectorDialog
and use a ValueSet here instead of the odd toolbar use

Change-Id: Ic2e78664ebde31751055d2c9fec66c7dabe8d05f
Reviewed-on: https://gerrit.libreoffice.org/68598
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-02 14:05:50 +01:00
Caolán McNamara
0887551123 weld SwInsertAbstractDlg
Change-Id: Ib3e9d0a7ff7e0fd3b0cf7bf492ca2bf59788fa2a
Reviewed-on: https://gerrit.libreoffice.org/68594
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-03-02 14:05:35 +01:00
Jens Carl
bb6f5dc046 tdf#45904 Move XNameAccess Java tests to C++
Move XNameAccess Java tests to C++ for ScDataPilotItemsObj.

Change-Id: Id8e83bb68408600f471148df7527467a371590fb
Reviewed-on: https://gerrit.libreoffice.org/68611
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
2019-03-02 09:29:03 +01:00
Jens Carl
67033fd7d0 tdf#45904 Move XIndexAccess Java tests to C++
Move XIndexAccess Java tests to C++ for ScDataPilotItemsObj.

Change-Id: I66888c4515e84cf0e8f051378616c0ecbf60c0e8
Reviewed-on: https://gerrit.libreoffice.org/68610
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
2019-03-02 09:28:52 +01:00
Julien Nabet
42398e3860 tdf#123705: avoid duplicate themeColor
See http://bugs.documentfoundation.org/attachment.cgi?id=149585
+ https://bugs.documentfoundation.org/show_bug.cgi?id=123705#c4

Change-Id: I3c6fb0a1ac46a62c75bb9daeaded1633889416eb
Reviewed-on: https://gerrit.libreoffice.org/68398
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-03-02 08:26:02 +01:00
Andrea Gelmini
e7ebca6dbe Fix typo
Change-Id: Ib5409a3c9b22bf0caf950905a75559bdef8b057f
Reviewed-on: https://gerrit.libreoffice.org/68612
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-03-02 08:24:59 +01:00
andreas kainz
e18c714819 Sifr icon theme update
Change-Id: If762921a9ff87831de6e62bb73850be26f752f1c
Reviewed-on: https://gerrit.libreoffice.org/68605
Tested-by: Jenkins
Reviewed-by: andreas_kainz <kainz.a@gmail.com>
2019-03-02 08:17:26 +01:00
Jens Carl
350294ccc4 tdf#45904 Move XEnumerationAccess Java test to C++
Move XEnumerationAccess Java test to C++ for ScDataPilotItemsObj.

Change-Id: I6123692aee130f4c5bf326676ace2a6e7ac09405
Reviewed-on: https://gerrit.libreoffice.org/68609
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
2019-03-02 06:56:26 +01:00