summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-20loplugin:unusedfieldsNoel Grandin
Change-Id: I852e98b16fdcb88b04e39d11e3101d502c918c24 Reviewed-on: https://gerrit.libreoffice.org/29078 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-09-20Related: rhbz#1362451 avoid recursive ownerchanged handling during ownerchangeCaolán McNamara
Change-Id: Id9c12b7ce6458348890d7c7ff7fdb2cd37c4601c
2016-09-20tdf#102295: remove mutex - use atomic for watchdog timingsTomaž Vajngerl
Change-Id: I6587bad8b7906faeae39735343278b10be78c05b
2016-09-20Related cid#1371287: Work around missing OStringBuffer move semanticsStephan Bergmann
...by adding more assign op overloads instead Change-Id: I3686d6c29adc47b1a8c48be4260614fd53589c8b
2016-09-20Related cid#1371289: Work around missing OUStringBuffer move semanticsStephan Bergmann
...by adding more assign op overloads instead Change-Id: I2d2e1b7f19d1b57528707ed5a5cce94b5fa5c2d0
2016-09-20Related cid#1371287: Improve code to not depend on missing move assignmentStephan Bergmann
Change-Id: I0397812ed7b728e03199d64929c42292fc9b1502
2016-09-20cid#1371306: Add move semanticsStephan Bergmann
Change-Id: Id669a84742cc4ffa3bb9f225af7fa4d218999681
2016-09-20cid#1371245: Add move semanticsStephan Bergmann
Change-Id: I35daf9030478831262521497a1977bdfbe661dd8
2016-09-20cid#1371291: Add move semanticsStephan Bergmann
Change-Id: I9bca3413e023b6909fbf75e567ed75739189bc43
2016-09-20Related cid#1371289: Improve code to not depend on missing move assignmentStephan Bergmann
Change-Id: I6f0b8247b6757ddee158bd870473b749f22e7671
2016-09-20Remove redundant default ctor definitionStephan Bergmann
Change-Id: Ifdeaf8cde86eb284e7b5c67e8ef3bfe816c5654c
2016-09-20Related cid#1371287: Improve code to not depend on missing move assignmentStephan Bergmann
Change-Id: I4c03ad08078e25ea7f7d754e6eaa587da7984c9d
2016-09-20Related cid#1371289: Improve code to not depend on missing move assignmentStephan Bergmann
Change-Id: Id254fa76cafe33a36646d517d224ba6a05406c09
2016-09-20Related cid#1371289: Improve code to not depend on missing move assignmentStephan Bergmann
Change-Id: I332010574a2ddd13590452f08da32f21f8ef882b
2016-09-20Mark new exported function as SAL_CALLStephan Bergmann
...for consistency with existing exported functions Change-Id: Ib513dc8ce4dbf4e614f5453f2bbd32dcac4b8666
2016-09-20external/liborcus: Mark patch as upstreamedStephan Bergmann
Change-Id: Id830c74cbdfb759300ae278df2ece642eb3579bb
2016-09-20Adapt loplugin:dllprivate to DISABLE_DYNLOADINGStephan Bergmann
Change-Id: I721cfeaa144c773ead457e1c9138009d4071a06a
2016-09-20external/liborcus: Let us override -fvisiblity=hiddenStephan Bergmann
(needed by UBSan builds that use -fvisibility-ms-compat instead) Change-Id: Ifabaf352cf2b9e77f9458eff46e240141f9e729d
2016-09-20tdf#84684 RTF import: fix ZOrder of child shapes inside group shapeMiklos Vajna
Both ODF and OOXML's drawingML seem to just not write ZOrder for child shapes (instead they just describe them in a bottom-up order), but RTF does use dhgt, it seems. Given that ZOrder has different meaning inside and outside a group shape use a stack of GraphicZOrderHelpers to get the correct result. Change-Id: I68dbd9f0ae59a1759da14bf414dc1d277d1c927d
2016-09-20tdf#102295: AMD actually has two vendor id's.Jan Holesovsky
Change-Id: I9cc1341c8f8d154927a778dfa15b8d3013a9a487
2016-09-20tdf#102295: The relaxed values were actually too pessimistic.Jan Holesovsky
Change-Id: Ia117ae4a60a10994f3c59316e8c9a161aa8e5baf
2016-09-20Remove HAVE_GCC_VISIBILITY_BROKEN, never trueStephan Bergmann
The check for broken -fvisiblity-inlines-hidden doesn't mention a specific bug. Its roots date back to 072e89cf68dcf9b6713945e402dd7a9fe5cea48d "INTEGRATION: CWS newportstl" of the --with(out)-stlport area. Lets assume whatever failure is long since fixed. Make this a fatal configure error for now. The check should be removed completely after LO 5.3 branch-off. Change-Id: I7c64c2e8b9bd342beec9b84ff71f5712a6155b7d Reviewed-on: https://gerrit.libreoffice.org/29075 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2016-09-20Remove obsolete HAVE_GCC_VISIBILITY_BROKEN checkStephan Bergmann
<https://llvm.org/bugs/show_bug.cgi?id=12255> "with -fvisibility-inlines-hidden needed copy not emitted for virtual inline function" (which covers the relevant part of the Clang bug 11250 mentioned in the check) is reportedly fixed ever since at last Clang 3.2. Make this a fatal configure error for now. The check should be removed completely after LO 5.3 branch-off. Change-Id: I47edf92968f32735a509ef649e0e85b891baab4b Reviewed-on: https://gerrit.libreoffice.org/29074 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2016-09-20[API CHANGE] Remove HAVE_GCC_VISIBILITY_FEATURE, always trueStephan Bergmann
* GCC documents -fvisibility at least as far back as the GCC 4.0 online documentation at <https://gcc.gnu.org/onlinedocs/gcc-4.0.4/gcc/Code-Gen-Options.html>. * For external code, odk/settings/settings.mk unconditionally set HAVE_GCC_VISIBILITY_FEATURE for all platforms other than Windows. Make this a fatal configure error for now. The check should be removed completely after LO 5.3 branch-off. Change-Id: I1de415b6ed1591e0a7b6640ece861b6f0ef74112 Reviewed-on: https://gerrit.libreoffice.org/29073 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2016-09-20Remove obsolete HAVE_GCC_VISIBILITY_FEATURE checkStephan Bergmann
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=26905> "default-visibility class symbol improperly resolved as hidden-visibility" is fixed ever since GCC 4.2. Make this a fatal configure error for now. The check should be removed completely after LO 5.3 branch-off. Change-Id: Ie365d5a0e2217a4efd1e8e2642963738ae7d20b1 Reviewed-on: https://gerrit.libreoffice.org/29072 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2016-09-20Remove obsolete HAVE_GCC_VISIBILITY_FEATURE checkStephan Bergmann
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=19664> "libstdc++ headers should have pop/push of the visibility around the declarations" (aka gcc#22482, rhbz#162935) is fixed ever since GCC 4.2. Make this a fatal configure error for now. The check should be removed completely after LO 5.3 branch-off. Change-Id: I3e8fde187b4b20652ee3164485ef868a9bf5a7ce Reviewed-on: https://gerrit.libreoffice.org/29071 Tested-by: Stephan Bergmann <sbergman@redhat.com> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2016-09-20convert constants to scoped enum TblActionJochen Nitschke
move enum to header because default function parameters need them. added default case to switch to mute 'not handled case' warnings. Change-Id: I54d8734232e7568fd21ad0178a8492b4903866a3 Reviewed-on: https://gerrit.libreoffice.org/29038 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-09-20adapt aMsgItemInfo to 5b8c22379Markus Mohrhard
Change-Id: If5fd822f3f90b204d2661cf7b4446cb925ee6f3b
2016-09-20tdf#97049 Export "intd" to MathMLTakeshi Abe
Change-Id: Ie1fc33e18958e73d4876b2b5daceec127011c3cc Reviewed-on: https://gerrit.libreoffice.org/29003 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
2016-09-20Obsolete workaround for SUNPRO 5 compilerStephan Bergmann
Change-Id: Ib51f08e1d0e0dff066b06ecd85976b777d722a33
2016-09-20Remove obsolete workaround for SUNPRO 5 compilerStephan Bergmann
...copy/pasted into three more places Change-Id: I6661244d0248af509cd867fc3e8c451551068a78
2016-09-20Updated coreAdolfo Jayme Barrientos
Project: help 229282b80660a023077e5330afbbae51398b9690 It’s called an asterisk Change-Id: If15846de1cd0df1023198bff74711419ec3137f5
2016-09-20Updated coreGabor Kelemen
Project: help e8cbb3daf90aa2a6f2e68c01841535b49d53d066 tdf#97105 Fix location of the Freze Rows and Columns menu item This is now under View -> Freeze Cells Change-Id: I6968ee93a1d2f12451791b297b9497eae6e93cd6 Reviewed-on: https://gerrit.libreoffice.org/29024 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2016-09-19tdf#102295: relax timeout timings for the GL watchdogTomaž Vajngerl
Some OS/GPU combinations need more relaxed watchdog timeout timings as the shader compilation takes too long to complete. Change-Id: Ifd9ff7ecfa4b004d5411d6d364dd01a389a3fcec
2016-09-19try to generate more excel compliant files, tdf#41722Markus Mohrhard
§18.3.1.10 says for the operator attribute: "The operator in a "cell value is" conditional formatting rule. This attribute is ignored if type is not equal to cellIs" but checking §18.18.15 there are at least 4 attribute values that are not related to cellIs. I have added them now but need to test that this really helps. Change-Id: Id15efc7e0148b4e3b54404d1ffd911adc56b11ec
2016-09-19Resolves: tdf#102293 triple click results in visually unselected wordCaolán McNamara
in previously unselected textboxes in impress started happening after... commit 16c7f8916661df24f4681ec82f6bd4d7ad85d141 Date: Tue Jan 12 16:36:49 2016 +0000 tdf#97075 - don't render sdr overlays before we paint in impress instead flush the overlay after activating the edit object if we go on to put the cursor in there. Seems to work. Change-Id: Ib746c36d1074aee09771a3dc1d69834ce80a9c08
2016-09-19Explanation of the SPRM acronym added to definition of the Sprm classMilos Sramek
Change-Id: I536cd6ba2d531292d5148819dfd914b76f4b1111 Reviewed-on: https://gerrit.libreoffice.org/29032 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
2016-09-19sw: emit LOK_CALLBACK_STATE_CHANGED when cursor enters/leaves a redlineMiklos Vajna
For now only care about the start of the cursor, which can be only at a single redline. Add matching testcase + expose it in the gtktiledviewer status bar for interactive manual testing. Change-Id: Ib61757412d6b54bef64361d4a8563795ca0bab6c
2016-09-19in GetInt...() check !isFinite() instead of isNan()Eike Rathke
... and propagate coded double error instead of setting errIllegalArgument. Change-Id: I28456c3b0320181a80fe255e875a0bd78216c279
2016-09-19Resolves: tdf#100409 do not return coded double error for single matrix valueEike Rathke
Change-Id: I94477bf64ee7972e9822921a8a15d935cb01e53b
2016-09-19Fix '--as-needed' build for zmf with system libpngJan-Marek Glogowski
Change-Id: I92378dae4a515a587c897fff83b15d8e836b0aa2 Reviewed-on: https://gerrit.libreoffice.org/28974 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
2016-09-19tdf#100393, handle copying one cell to multiple cols with cond formatMarkus Mohrhard
The same fix has been applied for rows already. Change-Id: I77300680a657fb874d07641fbae928eb6c210acd
2016-09-19fftester: isAsciiLowerCase has a isUnicodeCodePoint assertCaolán McNamara
which is not helpful when the data is incoming from the outside world Change-Id: I00304ed0d577944a33f5fa6af155f1d130ab7d59
2016-09-19fftester: only decrement if there's a valid position before itCaolán McNamara
Change-Id: I64bddeb805ac5c2ad6d76e2b3271ae8a216d603f
2016-09-19Add .editorconfig fileSamuel Mehrbrodt
See http://editorconfig.org Change-Id: Ia571ca5d53fb9f02bd8d208b922c8ec5ef1939e5 Reviewed-on: https://gerrit.libreoffice.org/28962 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2016-09-19tdf#101919: rename ownCloud to Remote serverJulien Nabet
Change-Id: I217fdc805ce425f8a4a17d0d0e924e532ec070de Reviewed-on: https://gerrit.libreoffice.org/28983 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
2016-09-19tdf#101094 (32): Use a partial GET as a fall-back for HEAD...Giuseppe Castagno
... partial GET means a GET with no data returned, to test for resource 'real' availability in case HEAD fails or is disabled. At the same time disable use of HEAD method on the resource for the whole access procedure. This change is needed to manage web servers that don't permit the use of either HEAD or OPTIONS methods. To accomodate pure web sites that enable only GET to fetch contents. Change-Id: If52316ddd6ce637fb7d2ef518423de246ee2dcfb Reviewed-on: https://gerrit.libreoffice.org/28992 Tested-by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu> Reviewed-by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>
2016-09-19Related: rhbz#1353069 don't clear XATTR_FILL* from stylesheet if...Caolán McNamara
This is similar to de4908eb4d2f1f2ce38a37eea18a9efc4a0073b1 where the master page is not the sole owner. Which happens when copying and pasting slides which bring along a duplicate master page to an already existing one, and the attempt to remove the duplicate strips the fill properties from the shared stylesheet in use by the other regression from... commit b876bbe2cacce8af379b10d82da6c7e7d229b361 Author: David Tardon <dtardon@redhat.com> Date: Tue Apr 26 09:17:11 2016 +0200 rbhz#1326602 avoid exp. bg bitmaps from deleted slides Change-Id: I0a3a34ade2ad8464b1edb67a6e28dab45c761a2c
2016-09-19convert storeAccessMode to scoped enumNoel Grandin
Change-Id: I67705cdff0440487019a2992571147d648be1bfc
2016-09-19convert CopyOrNewType to scoped enumNoel Grandin
Change-Id: I4bc01dfbf3305e7eaa0887444e894d14e9e4d092