summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-11crashtesting: sw: fix export of ooo24576-1.doc and ooo79410-1.sxw to odtMichael Stahl
Crashes because an at-char fly has its anchor node deleted, and during deletion of its text frame its SwAnchoredObject is updated, which asserts because of inconsistent anchor node in the fly and mpAnchorFrame; the immediate cause of the inconsistency is that SwNodes::RemoveNode() changed the fly's anchor node. The root cause is that in the sw_JoinText(bJoinPrev=true) code, a fly anchored at the end of the deleted node isn't moved to the surviving node. SwTextNode::JoinPrev() uses different arguments to ContentIdxStore::Save(), so use the same here. The implementation of several ContentIdxStore functions, including ContentIdxStoreImpl::SaveFlys(), ignore positions that are equal to the passed nContent index, so passing in SwTextNode::Len() looks wrong. (crash is regression from 98d1622b3721fe899c4e1faa0b4cc35695253014) Change-Id: I3a4d54258611da6b15223273a187c39770caa8e2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93583 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de> (cherry picked from commit b2b234269b13d5dfd8e7123a25d282d88fee33a0) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96103
2020-06-11ofz#23300 infinite loopCaolán McNamara
Change-Id: I0ee67e8efefa48942357340cae46bd7ece27e5b7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96098 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-11Fix webdav lock refresh returning 0 instead of true when successfulJulian Kalinowski
With commit 58b84caca87c893ac04f0b1399aeadc839a2f075, the NeonSession.LOCK returns "theRetVal" from ne_lock_refresh when successful. But when there is no error, theRetVal will be NE_OK, which is 0, so the method returns false instead of true. This results in lock refresh being stopped after the first refresh, so WebDAV servers will unlock the file after the lock timeouts. Users will see error messages regarding lock timeouts and lost updates are possible. Fix this by adding a return statement when theRetVal == NE_OK. Change-Id: Ie43131fca96e1cfbe932444906b742958a719b26 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96023 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com> (cherry picked from commit 18c6cc0e7a4515b5bd993c425a7e0694bffe1207) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96049 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2020-06-11svx: fix loplugin:elidestringvar warningMiklos Vajna
Change-Id: I5424388dfc37988b2f4e5f8f34dcb1a577d9bfb6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95806 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96018
2020-06-11let the parent toolbar decide the focus of the buttonsCaolán McNamara
Change-Id: I481fbc1b65b806cdb9eb41d6648fe9476f1326fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96031 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-11Resolves: tdf#133862 crash in customize toolbar in embedded mathCaolán McNamara
Change-Id: I2fc7f3620145e48516c3ca73c0a5d08dce11d78a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96034 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-11tdf#133858 opening spreadsheet with large array formula takes 10 minsNoel Grandin
the spreadsheet has lots of SUM(IF over a whole column. Which results in us allocating a matrix with 1 million rows, which is rather slow to process. So reduce the matrix to the data that is actually there. We can only do this for some opcodes, because other opcodes act differently when referencing empty space, so for now I only perform this optimisation for the opcode in use in this spreadsheet. This takes the load time from 5m to 3s on my machine. Change-Id: I41fe9afcb0fbdf2a928a19c44a0f291a1247a41c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96022 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> (cherry picked from commit 9a5f2961b085ce2f23ecdf0a03d1114bacac8e2c) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96042
2020-06-11tdf#133268Rizal Muttaqin
- Update Calc's Paste Special - Update Emoji - Update images of Draw/Impress export as HTML - Add Save All - Update Merge Cell image Change-Id: I73a3c9ff28dffe1e83f63385abf19ecd970f8df1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96058 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> (cherry picked from commit 6a814e8793a541777dabc3f078bf6c60941a34a0) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96045
2020-06-11tdf#133268 Update Calc's conditional format iconsRizal Muttaqin
Change-Id: I7057d813c125bd075ebdd9d6bd5879cd1d8b9980 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95966 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> (cherry picked from commit b6bc76bb85417aa4d3d499f9e212175fb23918f0) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95975
2020-06-10tdf#132725 sw: SwUndoDelete: don't group if flys are be deletedMichael Stahl
The fly would not be deleted by CanGrouping() but would be deleted later in RedoImpl() via the IsAtStartOfSection() check so just force a new Undo action in this case. (regression from 91b2325808a75174f284c48c8b8afc118fad74e4 and 28b77c89dfcafae82cf2a6d85731b643ff9290e5) Change-Id: I68f9f6b7fd0306bc0853a370b1030463a0024edc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96002 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de> (cherry picked from commit 32c162ad1723512763b74d01eaec32c1296f3a55) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96036 Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2020-06-10detect inconsistent SUMIFS() ranges when range reducing (tdf#132431)Luboš Luňák
03b352b9599514e4e244e1907510713cf1331284 introduced reducing of the SUMIFS range to the cells that actually contain data, but tdf#132431 introduces incorrect ranges that lead to negative indexes, and correctness checking of ranges comes only after the use of these indexes. Change-Id: Ia13db83d222310d470a0a8ecef51dbdd7992d479 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95898 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 707cd62e00a75f5a07ef3a4acf5df9d49e8e07c1) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96030 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2020-06-10tdf#103474 handle quarter angles before using atan2Regina Henschel
sin(basegfx::deg2rad(fEAngleDeg)) does not result in 0 for fEAngleDeg=180 because of rounding errors and therefore atan2 later in the code gives wrong angle. Because the corresponding circle angle is the same as the ellipse angle for 0°, 90°, 180° and 270°, these angles are now handled before using atan2. Change-Id: Iae2a4d188b837ff787f2af4d79f874ba21c9aa2f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95772 Tested-by: Jenkins Reviewed-by: Regina Henschel <rb.henschel@t-online.de> (cherry picked from commit 91f06123298bb8870cd6fa4e19d3aea9909f8e5b) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95819 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2020-06-10tdf#132845 discard pending page change if user clicks in documentCaolán McNamara
Change-Id: Icce91c9afac143190dc5c7d823d745dc2434c1a1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95988 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-10grab focus to style combobox when parent gets focusCaolán McNamara
Change-Id: Iaee1a8399e8e4f70a52ce99be113e9e7607a5ab7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95989 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-10Update git submoduleszdposter
* Update dictionaries from branch 'libreoffice-7-0' to 15fab9a9420f967508a9b8c383090607c3ae086a - upgrade Slovak spellchecking Change-Id: Id3bc65f957187d2c2ba98ba76a1ed4e9fab72c97 Reviewed-on: https://gerrit.libreoffice.org/c/dictionaries/+/95986 Tested-by: Andras Timar <andras.timar@collabora.com> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2020-06-10tdf#133641 sw: fix crash double-clicking CH_TXT_ATR_FORMELEMENTMichael Stahl
Only search for separator if there is one. (regression from 1c94842e053a20a739a181d38a35c324df3e62a7) Change-Id: I6697faa7cb83cab48084f9710f8c5018b9e738e2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95905 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de> (cherry picked from commit cb28054d831c38ef645f635ecd80475fb5735679) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95978
2020-06-10tdf#132597 sw: fix inconsistent handling of ExcludeFlyAtStartEndMichael Stahl
IsDestroyFrameAnchoredAtChar() checks the position but the only caller, SwUndoInserts::UndoImpl(), really wants to exclude the entire nodes, see IsCreateUndoForNewFly(). (regression from 28b77c89dfcafae82cf2a6d85731b643ff9290e5) Change-Id: I763ad3b7d82af03f6910dcf34315f793d090c62e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95952 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de> (cherry picked from commit f9fb86408e6e06c262332be26674305ae5c05bb7) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95981
2020-06-10delay and batch calls to StartListeningFormulaCells() (tdf#133302)Luboš Luňák
In the testcase ScColumn::StartListeningUnshared() gets called repeatedly with almost the same cells range (just extending), so this gets quadratic. Delaying and doing it once on the whole range at the end avoids this. Change-Id: I3e92817d434cf7e4be0ea658f9adc0a24ceda260 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95531 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> (cherry picked from commit 3677b86af004f331762d460f1a84c950ee8d0480) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95874
2020-06-10tdf#133819 support for tristate checkboxesRizal Muttaqin
Change-Id: Ie98700652d76db10e8f8b587016ddae9253ddaac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95956 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> (cherry picked from commit 216b096724167d9e39b512b453f11ed3424995f2) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95974
2020-06-10Icon theme: tdf#133582 tdf#133038Rizal Muttaqin
- All icon theme: tdf#133582 missing checkbox and radio button in gen env - Breeze: tdf#133038 Change-Id: I2f756fe6920099bb37fd6b3f83df7f1e21504290 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95893 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> (cherry picked from commit d6d10caa9f00e036f88eff009a1874ec3ce30cfd) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95884
2020-06-09tdf#101856 correct Insert bookmark dialogSerge Krot
- left align checkbox "Hide" - do not resize "Close" button - place "Close" button at the bottom of the dialog Change-Id: I57caa83edde2c377dfbf0aaacb60281e4966fbaf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95855 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> (cherry picked from commit 3a371da71ab738a99e81e75c736fa5e384ebd9d3) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95971
2020-06-09Resolves: tdf#132540 theme the unwanted popover into invisibilityCaolán McNamara
Change-Id: If18c5c1de40a4f93d062265d41a2bff72555d6c1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95973 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-09tdf#133412 replicate active entry to ComboBox replacementCaolán McNamara
Change-Id: Ifde87738710406fb9f28008fa96241d59c52f450 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95818 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-09Resolves: tdf#133780 allow sorting search result treeview columnsCaolán McNamara
Change-Id: I7d5b1ffdaf99fd2e28dfd124db0fbbd4036e2dd6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95877 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-09tdf#129856 invalidate old internal border if we scrollCaolán McNamara
and will redraw a new one Change-Id: I2438af94e54f31c617cc183c61fbaaef31b5601f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95887 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-09tdf#133822 mirror GtkSalObjectWidgetClip location for RTLCaolán McNamara
Change-Id: I4ab4a0fb8fc343ee9a4c66c58e20583482958f37 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95889 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-09tdf#133462 cursor missing in SQL textboxCaolán McNamara
(and spell checking, calc page format header/footer dialog, etc) since... commit c2f8929ed76085bc81f390f90e06bd6781206537 Date: Wed May 29 23:33:25 2019 -0400 vcl: sfx2: LOK: Support per-view popup windows I feel this is a mismerge where the point of commit b9c10ee923308f336a694bbc0212396ed5317b6a Date: Wed Apr 3 12:02:13 2019 +0100 weld ClassificationDialog to allow cursor drawing to a non-Window OutputDevice got clobbered Change-Id: If693fd0ee83afc6e7f0ddce7b43b8cb6e3327116 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95822 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-09tdf#133807 represent a visible search dialog when search results is closedCaolán McNamara
Change-Id: If38b2770cfdd7d88bb75cbd47f44cc8515c4e041 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95883 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2020-06-09tdf#133474 DOC import: fix lazy-loading of images with zero sizeMiklos Vajna
DOC typically contains images with a size hint outside the image, but this is optional. Make sure that we load the image in case the size is not available without loading. The effect is that once SwWW8ImplReader::MapWrapIntoFlyFormat() calls SwGrfNode::GetTwipSize(), we always get a valid size. Ideally without loading the graphic. (cherry picked from commit 369355da5c1e25bad7124dd6e187d9e381759751) Change-Id: I81536ceb44c6e455e9bf274a5852008443f9d64f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95897 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2020-06-09tdf#133604 sw: DOCX export: put CH_TXT_ATR_FORMELEMENT in its own runMichael Stahl
Commit b03fefcc4dbdfee3b9eeb5fa0e586dd12ddcd3d2 ought to have fixed this but didn't; the run following the CH_TXT_ATR_FORMELEMENT still ended up inside the field result. But when importing that into Writer, it appeared correct; Word shows the problem. (regression from 94e0b8407b02d76b27324b8b08012eb024aca9e9) Change-Id: I1fc1328223353422a83d403e8f790d156dbec4e9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95843 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de> (cherry picked from commit 7f2908b83a39bbb6fa648d6815265ad203f86ddc) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95881 Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2020-06-09tdf#127122 Sync View and Review group in groupedbar appsandreas kainz
Change-Id: I3b583ef79e651385a044f47b17684a21541467db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95771 Tested-by: Jenkins Reviewed-by: Andreas Kainz 🦅 <kainz.a@gmail.com> (cherry picked from commit 08c3a7b74037812eda566924d3d8696768461fb8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95879 Reviewed-by: Andreas Kainz <kainz.a@gmail.com>
2020-06-09tdf#126025: Non-const GetPropertyValueByName must use non-const Sequence []Stephan Bergmann
...which internally calls getArray to make sure it references a unique sequence. Regression introduced with 85f28ec44a2c169c91dac9346e9c71feda6a6cab "Clean up C- style casts from pointers to void". Change-Id: Id80b75f06322c65fc31040cc0b1892fe3a0aeaab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95862 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com> (cherry picked from commit dd74e75c2692ee50535e2a9c7cf344fafc0e724a) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95872
2020-06-09tdf#132596 writerfilter: fix paste of RTF with header/footerMichael Stahl
The problem is that writerfilter inserts the content of header/footer into the body text, but then DomainMapper_Impl::PopPageHeaderFooter() calls RemoveLastParagraph() and deletes a body paragraph containing a fieldmark, and then in Undo some SwHistoryTextFieldmark can't find it, and since ffb26b81e1c7ff1d64959200247bb2edd5a569da this crashes. This is because of the borked error handling in DomainMapper_Impl::PushPageHeaderFooter(); the m_xBodyText->createTextCursorByRange() call throws an exception that is swallowed, so the m_aTextAppendStack doesn't have an entry containing the position in the header. To fix the error handling, set m_bDiscardHeaderFooter = false only when everything was successful. Also fix the call to be xText->createTextCursorByRange instead (this is a regression from 232ad2f2588beff50cb5c1f3b689c581ba317583). Then it turns out that Undo still crashes, because sw can't Undo changes of header/footer content, so just return early unless it's a new document. Change-Id: Ie5aeb45447c5fbd4b3ae15c4cffb9800583a6d1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95797 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de> (cherry picked from commit 7a5afa492a7233b36165b3aba2774a1b03cdefc6) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95823
2020-06-09tdf#133455 DOCX import: fix table border regressionLászló Németh
caused by commit 8ffc1299ebf83450e67cf2a89304859e2558cd27 (tdf#95033 DOCX import: apply tblPrEx table border). Change-Id: Ief4da3bce3282b5dab1ce4dabb4e075efcc1abaf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95504 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org> (cherry picked from commit 3593dd550882783b5f776262e928fc058c4dbd9d) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95550 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2020-06-09Colibre:tdf#133753 add svx iconsRizal Muttaqin
Change-Id: Iffc335098e497e1248c296bb34b1e970da51676b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95778 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id> (cherry picked from commit 4c4b3218b8595a9809ffade0cfd064f3d9335dff) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95870
2020-06-08tdf#131990 MACROS: fixes return value of UpDown MethodCanberk TURAN
This patch fixes bRet return value of UpDown method in sw/source/core/crsr/swcrsr.cxx. Before this patch UpDown method always returns true. Change-Id: I5ebe4bef4e6b9d7ace4941c31e9d5a03c2023997 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95669 Tested-by: Jenkins Reviewed-by: Gülşah Köse <gulsah.kose@collabora.com> (cherry picked from commit 1e5cf1b3ebf39aee01ed2a3bfd5be7ee6f44d18e) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95811 Reviewed-by: Canberk TURAN <canberkkturann@gmail.com> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2020-06-08Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'libreoffice-7-0' to 6f9cff9a59d66c813d3947cdca65ff32c2d42821 - Improve readabilty of SERIESSUM Change-Id: Ia5f4c2ccd335f9be8606bb192cc88d703d80d00c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95436 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 67026c44ece5d04b41eb1c2f2c3ebf086d558bbd) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95740 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 13eadf6de9cc483db44c399feb6a657fe8fde2a3 - Improve help information for ACCRINT() function to better explain the behaviour of the Par argument. Change-Id: Ia1fb54abe828dc9d0310e83f9552099759b96d40 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95329 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit e04a83713f38be33d0c51cc35d0c457919a3f213) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95739 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 4a23b97189fc671c10d8ab42c1fc53946247cf8f - (ful_func.xhp) Update common defintions for lengthy argument lists, to contain more white space and give greater consistency across Calc functions. Change-Id: I053486715c5cb8f0687b6b02c218e470db163b8d Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95249 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit e10bfae45bc138b0c2351a7cb6bd3cc591bea388) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95738 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'libreoffice-7-0' to bebcf798e7547283a9dd5fbad44d9bfe3847ddb3 - Correct argument separation character in CEILING Change-Id: Iac4caaba8c04232726529a201576a20f29b1a14f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95296 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit a85505fe14d6f677e10e1b1d08ca28ccac0d126c) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95737 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to a7337c9922374b225595776e7b5ab9f87c9e2856 - (04060185.xhp) Include square brackets in syntax sections to indicate optional parameters. Change-Id: I8d099d9babe118c7592b060027dd037e9fbdadaf Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95245 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 79dfc48af63b0834aee096c65f92f1bc96fc1b6c) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95736 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 4a8b7a806112d636b174666636bd8d74ddcdbfba - (04060184.xhp) Include square brackets in syntax sections to indicate optional parameters. Change-Id: I20270c2acaa2d9f9957691ce3452986d35126a0e Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95243 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 427ff3dd99a459af6a3f911ad5b23f94d91b4a62) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95735 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 7256f3ddd4b6a199ab32278ff727b766cf866fc5 - (04060183.xhp) Include square brackets in syntax sections to indicate optional parameters. Change-Id: I53c9d01dfd75cdab6bac7284b2d775d36a1d9311 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95241 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 57145b91d3e06b07d714e65e00d9e19626dbca52) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95734 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to a80ec77e17ca9cbf4c4e12affa4d31a7ed412677 - (04060182.xhp) Include square brackets in syntax sections to indicate optional parameters. Also updated GEOMEAN() and HARMEAN() to cater for up to 255 arguments rather than 30. Change-Id: I706f1f8426b04b3ec06064d505116151b55f2b00 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95240 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 8a1427c35e2392ecfe8ecaee84ab1c24fa5b87ae) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95733 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 3c0f925c0367855db0265e6785c32a1ffc2a0731 - (04060119.xhp) Include square brackets in syntax sections to indicate optional parameters. Note: PMT() and PPMT() functions - syntax now matches ODF 1.2. Change-Id: I7c291ed84eaf875953e86996cc74c2c9a956e13c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95235 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 4b4e25cad5a6971b1be4f077bbe42fd08366b4fd) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95732 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to d3ba25714ea93ce282c319c0898ba66048224afa - (04060181.xhp) Include square brackets in syntax sections to indicate optional parameters. Change-Id: Idade23cd4fd95210ecc0bd1684f30f30c9d2ccbc Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95236 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 5dd2cc30687d259990a9882d1c0874993fb60747) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95731 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesOlivier Hallot
* Update helpcontent2 from branch 'libreoffice-7-0' to 71f706236edfd8ade428215f0c850c7197a59008 - Fix broken links between pages Change-Id: I2bb6f9314bca0e40507644805120f884dc61130f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95253 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 80ea6d732d33f789167774efdb26dfac67b35afc) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95730 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 5d3020b7cde049bfd0fa61f5d6abe660318ffbbe - (04060116.xhp) Include square brackets in syntax sections to indicate optional parameters. Change-Id: Ife2ccaeb06062c1cedaa8cba8511a0a86be1fc1a Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95209 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 16b1c5d9c3ead98647e6cc816a9b81e39be48ca5) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95729 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 0c2b19daf2c1d08c53398f82da914e87aa4373f1 - (04060118.xhp) Include square brackets in syntax sections to indicate optional parameters. ODF 1.2 used to confirm configuration of brackets for FV(), NPER(),and RATE(). Change-Id: I7b109974d3e1dbc6670c32628a5425741d882f4e Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95208 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit cf09e34b35c8f0803ecfb5151bdbf1a1cf1ccc68) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95728 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2020-06-08Update git submodulesSteve Fanning
* Update helpcontent2 from branch 'libreoffice-7-0' to 1db1f9baa638c1d615352a810bac549f58cd4c51 - (func_color.xhp) Include square brackets in syntax section to indicate optional parameter. Change-Id: I648260ba137015b29443944c983aac16f497b7d6 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95207 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> (cherry picked from commit 6a31cba2f22a5a7cf60c1590b1189423fed285b3) Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95727 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>