summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-02-16 21:30:03 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-02-16 21:30:03 +0100
commitce99d6a58f9368279ff1495b5b367eb64343b26c (patch)
tree9a9122975580768ccc140236f83f15287109f007
parent082768f47b6bd71d82faf6fdba48ece1cc1e753a (diff)
Version 7.2.6.1, tag libreoffice-7.2.6.1 libreoffice-7.2.6.1
m---------dictionaries0
m---------helpcontent20
m---------translations0
3 files changed, 0 insertions, 0 deletions
diff --git a/dictionaries b/dictionaries
-Subproject 374149a14a95947a0aa9c53c7d5f2dd267c8a76
+Subproject b3d79b5689c936ca4bf8a032bafeb08625980e9
diff --git a/helpcontent2 b/helpcontent2
-Subproject 1a18d71e31c0cf3619a4a7fe247ac9ea6e721af
+Subproject c0eb3d505b2ebb213d247683ca476780eb2cae8
diff --git a/translations b/translations
-Subproject 07ac7658cc869c40bf0945159ae920c6bd3f74c
+Subproject 4b0dfaca7dce84faedc490e194d67961101ab6c
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org> 2017-03-06templatize HTMLEnumOption::GetEnum methodsNoel Grandin And consequently fix bug in htmlfld.cxx in the RES_DOCSTATFLD/SwDocStatSubType handling, where it was updating the m_bUpdateDocStat fields by comparing the wrong enum variable. Change-Id: If9a68699a9d375ace120a3bf4f4bf4d4ae20a8e0 Reviewed-on: https://gerrit.libreoffice.org/34857 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> 2016-11-01loplugin:oncevar in sd..svgioNoel Grandin Change-Id: I58565460fcc3279c9771c6e1272d0af540b2c87c Reviewed-on: https://gerrit.libreoffice.org/30459 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk> 2016-09-15replace sal_Size with std::size_t (or sal_uInt64 for SvStream pos)Michael Stahl ... except in include/rtl, include/sal, include/uno, where sal_Size is retained for compatibility, and where callers of rtl functions pass in pointers that are incompatible on MSVC. Change-Id: I8344453780689f5120ba0870e44965b6d292450c 2016-05-10Replace fallthrough comments with new SAL_FALLTHROUGH macroStephan Bergmann ...which (in LIBO_INTERNAL_ONLY) for Clang expands to [[clang::fallthrough]] in preparation of enabling -Wimplicit-fallthrough. (This is only relevant for C++11, as neither C nor old C++ has a way to annotate intended fallthroughs.) Could use BOOST_FALLTHROUGH instead of introducing our own SAL_FALLTHROUGH, but that would require adding back in dependencies on boost_headers to many libraries where we carefully removed any remaining Boost dependencies only recently. (At least make SAL_FALLTHROUGH strictly LIBO_INTERNAL_ONLY, so its future evolution will not have any impact on the stable URE interface.) C++17 will have a proper [[fallthroug]], eventually removing the need for a macro altogether. Change-Id: I342a7610a107db7d7a344ea9cbddfd9714d7e9ca 2016-03-17loplugin:constantparam in svtoolsNoel Grandin Change-Id: I1a3c4a36e29a6712c589ffd3aaada593880d978d Reviewed-on: https://gerrit.libreoffice.org/23304 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com> 2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann Change-Id: I7213b49b09ddcb00841aa5f63343baeab0e65fa4 2015-08-27Clean up sEmptyStephan Bergmann Change-Id: If1b2bfe308caa2bce92e73d2c5c86ee273faed93 2015-08-17Put Polygon from tools under tools:: namespaceNorbert Thiebaud Polygon is one of these names that Clash with some system objects A similar work has been done earlier with PolyPolygon. Change-Id: Icf2217cb2906292b7275760f1a16be0e150312f5 Reviewed-on: https://gerrit.libreoffice.org/17789 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> 2015-03-26const_cast: convert some C-style casts and remove some redundant onesStephan Bergmann Change-Id: I59526bea5104def80e98902e4cf16e7bcfaa250c 2014-12-18sfx2: Use appropriate OUString functions on string constantsStephan Bergmann Change-Id: Iea55d87a7c7b2afc408e3822121f79234481eccc 2014-11-06Revert "use the new OUString::fromUtf8 method"Stephan Bergmann This reverts commit 05050cdb23de586870bf479a9df5ced06828d498, not all places that use e.g. OStringToOUString to convert potential UTF-8 are guaranteed to fulfil the prerequisites necessary to use fromUtf8 (and some places like e.g. in codemaker are happy with the best-effort effect of OStringToOUString's OSTRING_TO_OUSTRING_CVTFLAGS). 2014-11-06use the new OUString::fromUtf8 methodNoel Grandin Change-Id: I771004b7ccab3344a67e827e45bc34c22ffa5f77 2014-10-14coverity#1078471 Unchecked return valueCaolán McNamara Change-Id: I2eb340eddf77ef5f007b5588e78d2b03bb5eb059 2014-09-29MSVC 2012 apparently isn't ready yet for std::vector<std::unique_ptr<T>>Stephan Bergmann ...producing error messages about trying to access private undefined unique_ptr copy ctor etc. Partial revert of 014e7933af751bfe0a03867373b82efa806f3a3d "svtools: std::auto_ptr -> std::unique_ptr: ...changing HTMLOptions to std::vector<std::unique_ptr<...>> because boost::ptr_vector<...>::push_back only supports auto_ptr, not unique_ptr," going the awkward std::unique_ptr x(...); push_back(x.get()); x.release(); route instead (which could be simplified if boost::ptr_vector::push_back ever started to support unique_ptr). Change-Id: I15693030a0bbfdedbfdfbe76ede5d0c74f4e5b41 2014-09-29svtools: std::auto_ptr -> std::unique_ptrStephan Bergmann ...changing HTMLOptions to std::vector<std::unique_ptr<...>> because boost::ptr_vector<...>::push_back only supports auto_ptr, not unique_ptr. Change-Id: Ie5f92bc40ce5425dc1c634b17addc2b0dd9bbda3 2014-04-10DownLoad -> Download.Jan Holesovsky Change-Id: Ia1729f570cc80a0375532da6478de9d58518556e 2014-04-07sfx2: sal_Bool->boolNoel Grandin Change-Id: I48ae51781f64e60deb0c03352087100729c8c3cd 2014-03-25svtools/svparser.hxx: sal_Bool->boolNoel Grandin Change-Id: I130c40227a756b396c4f858468457867d53454b1 2014-03-18sfx2: sal_Bool->boolNoel Grandin Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b 2014-03-10coverity#708153 Uninitialized scalar fieldCaolán McNamara Change-Id: Ifd4e3f792a01d0f806b9d49355463eae79b877ab 2014-02-11coverity#1130402 Missing break in switchCaolán McNamara Change-Id: Ifd86d24bb6a7957d4da392bed3f5ebda8d0fa690 2014-01-22convert more SvStream::operator<< callsNoel Grandin .. to more explicit SvStream::Write* calls This was done using another run of the clang rewriter, and then a lot of hand tweaking to fix all the places where the rewriter did not play nice with various macros. Change-Id: I7bcab93851c8dfb59cde6bc76290c6484d88fb18 Reviewed-on: https://gerrit.libreoffice.org/7494 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com> 2014-01-13drop unnecessary tools/string.hxx includesCaolán McNamara Change-Id: I2439ed19b554381f80e882aacbac05167622df92 2014-01-13longparas: stop tuncating large html filesCaolán McNamara Change-Id: I0ad9422d574c8629953fd95f0d334617c042c60f 2013-09-25Related: fdo#38838 remove UniString::EqualsIgnoreCaseAsciiCaolán McNamara Change-Id: Ib5c3a2daa4a48bc286b14fa2cebb3306ea0012bc 2013-08-29convert sfx2/source/bastyp/* from String to OUStringNoel Grandin Change-Id: I984ca2833d65ce37967058b1cb5800c61defe88c 2013-08-29convert include/sfx2/sfxhtml.hxx from String to OUStringNoel Grandin Change-Id: I8c3ffa5add610d859091ef5f9251247a3dd0b6b7 2013-08-15convert include/svtools/svparser.hxx from String to OUStringNoel Grandin Change-Id: I4d6196a9a96ad1dd236f8622a523b4702e92d76f 2013-08-06Change String to OUString in some class.Palenik Mihály I changed String class to OUString class in the following: SwHTMLPosFlyFrm, CSS1Parser, SvxCSS1Parser, SwCSS1Parser classes, CSS1PropEntry struct and htmlctxt.cxx file. Change-Id: I5d474a62c28ff3ee3848abb414acdf1b69492278 Reviewed-on: https://gerrit.libreoffice.org/5234 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@suse.cz> 2013-07-23expand out the U2S and S2U macros from sfxuno.hxxNoel Grandin They are vestiges of the old string classes. Change-Id: I5dd458bd2dac5f2e867ddaa731190f159b8a3b65 2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09 2013-03-12Abbreviate Rectangle as Rect, not RecTor Lillqvist Change-Id: If38a5d23150bcd19a6eb6024c2ef1eea826898f5 2013-02-25loplugin: unused variablesThomas Arnhold Change-Id: I63553a09eec81e5ae28aa79ee1d3281053b23d06 2013-02-14Removed several useless macros: UNISTRING, USTR, USTR_ASCII, ASCII_STR, ↵Jean-Noël Rouvignac ASCII_STRING, CONST_ASCII, ASCSTR, ASCII, DEFINE_CONST_UNICODE, DEFINE_CONST_OUSTRING Change-Id: I96d690bf9f9b319e9eeafcf218ec5ce87f21215f Reviewed-on: https://gerrit.libreoffice.org/1954 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi> 2012-11-27remove legacy String svl's Put*Entry family of function and convert usersNorbert Thiebaud Change-Id: Iebf4017ce4c2c48389716eac1bbf7f386ac7a296 2012-08-16-Werror,-Wunused-private-field (Clang towards 3.2)Stephan Bergmann Change-Id: I7162523a26488b8528a91ec7abd587f55647acbb 2012-07-25Remove unused parameter.Kohei Yoshida Change-Id: Ib6539528655c5def0d0802602ec913799f0ab07a 2012-07-25Referer was set to SfxMedium but was never used. Removing it.Kohei Yoshida Change-Id: I88ab874d4efc60d58722f0bb175d14a4d443398b 2012-07-06re-base on ALv2 code. Includes:Michael Meeks Patches contributed by Mathias Bauer: cws mba34issues01: #i117713#: remove superfluous assertions about field unit fallbacks http://svn.apache.org/viewvc?view=revision&revision=1172341 cws mba34issues01: #i117718#: provide filter name in case storage of medium does not allow to detect one cws mba34issues01: #i117712#: fix several resource errors introduced by IAccessible2 implementation http://svn.apache.org/viewvc?view=revision&revision=1172343 http://svn.apache.org/viewvc?view=revision&revision=1172350 cws mba34issues01: #i117708#: status indicator for inactive documents http://svn.apache.org/viewvc?view=revision&revision=1172358 cws mba34issues01: #i116025#: fix typo and add missing treatment of new parameter http://svn.apache.org/viewvc?view=revision&revision=1172359 cws mba34issues01: #i117024#: rework parameter conversion for load/save slots http://svn.apache.org/viewvc?view=revision&revision=1172360 cws mba34issues01: #i116803#: possible crash on Linux when dispatch.cxx is compiled with optimization http://svn.apache.org/viewvc?view=revision&revision=1172367 cws mba34issues01: #i114600#: fix compiler warning for name clash found on Solaris http://svn.apache.org/viewvc?view=revision&revision=1172371 2012-05-24Removed unused SfxMedium::bDirectStephan Bergmann See the TODO comment in sfx2/inc/sfx2/docfile.hxx about a temporary SfxMedium ctor overload to find not yet adapted uses of another overload, to be removed again in due time. Change-Id: Ie22c33c32f8870ce6ebf6d500abc7a4e33d97183 2012-03-08Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin In this case, we also convert from storing pointers to storing the items directly because SvxMacroTableDtor completely controls the lifecycle of the SvxMacro objects it contains. Also add an operator== to SvxMacroTableDtor and remove the out-of-line implementations of equals from two other places.