- 18 Şub, 2019 1 kayıt (commit)
-
-
Arkadiy Illarionov yazdı
Use range-based loop or replace with STL functions Change-Id: Ib3fab47318d1bfbb4df8f886a8cd9596525a420f Reviewed-on: https://gerrit.libreoffice.org/67914Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk> Tested-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 29 Kas, 2018 1 kayıt (commit)
-
-
Noel Grandin yazdı
found with git grep -n -A4 'if.*!.*empty' | grep -B3 -P '(\bfor)|(\bwhile)|(\bdo)' Change-Id: I582235b7cf977a0f9fb4099eb306fdb4a07b5334 Reviewed-on: https://gerrit.libreoffice.org/64169 Tested-by: Jenkins Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 18 Kas, 2018 1 kayıt (commit)
-
-
Julien Nabet yazdı
Change-Id: Ia3c094ee65be3f5048df6896a4a6428bdd8fed10 Reviewed-on: https://gerrit.libreoffice.org/63527 Tested-by: Jenkins Reviewed-by:
Julien Nabet <serval2412@yahoo.fr>
-
- 17 Kas, 2018 1 kayıt (commit)
-
-
Christian Lohmaier yazdı
also don't change POT creation date when rewriting a po file, update Po-Revision instead. When creating templates, put X-Accelerator before X-Generator (like pootle would order it) Change-Id: I7fec4cb1c50e27b87decd9a892de3f01a02253ed Reviewed-on: https://gerrit.libreoffice.org/63416 Tested-by: Jenkins Reviewed-by:
Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
-
- 27 Eki, 2018 1 kayıt (commit)
-
-
Christian Lohmaier yazdı
Change-Id: I51a82ce5fc09d44ebc6f7c06c67b475ee2adf68b Reviewed-on: https://gerrit.libreoffice.org/62419Reviewed-by:
Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Jenkins
-
- 01 Eki, 2018 1 kayıt (commit)
-
-
Andras Timar yazdı
Change-Id: Ica102309627fade2a064ee5516e84801affe4082 Reviewed-on: https://gerrit.libreoffice.org/61184 Tested-by: Jenkins Reviewed-by:
Stephan Bergmann <sbergman@redhat.com>
-
- 30 Eyl, 2018 4 kayıt (commit)
-
-
Andras Timar yazdı
Change-Id: I43978811056692623344239d2c6e4763fa7de16b Reviewed-on: https://gerrit.libreoffice.org/61165 Tested-by: Jenkins Reviewed-by:
Andras Timar <andras.timar@collabora.com>
-
Andras Timar yazdı
Change-Id: Icbe0dd5e63eb5b10d162f34347ab86dde547dc62 Reviewed-on: https://gerrit.libreoffice.org/61164 Tested-by: Jenkins Reviewed-by:
Andras Timar <andras.timar@collabora.com>
-
Andras Timar yazdı
Change-Id: I220fce194813f783c807c23eeffd2421cadd7636 Reviewed-on: https://gerrit.libreoffice.org/61163 Tested-by: Jenkins Reviewed-by:
Andras Timar <andras.timar@collabora.com>
-
Andras Timar yazdı
Change-Id: I7d1d344e79e0c23886a21032d2ce85e5abb199cb Reviewed-on: https://gerrit.libreoffice.org/61162 Tested-by: Jenkins Reviewed-by:
Andras Timar <andras.timar@collabora.com>
-
- 09 Eyl, 2018 1 kayıt (commit)
-
-
Noel Grandin yazdı
This reverts commit 3d604d1c. comments from sberg: I assume dropping the std::move from aCurSel(std::move(aSel)) is caused by performance-move-const-arg's warning "if std::move() is called with an argument of a trivially-copyable type" (<https://clang.llvm.org/extra/clang-tidy/checks/performance-move-const-arg.html>). For my taste, that approach is too tightly tied to a class's current implementation details, something that may change over time. Imagine a trivially copyable class C with a raw pointer member (where the lifecycle of the pointed-to object is tracked by some higher-level, likely broken protocol). Now, that protocol is fixed and the raw pointer member is replaced with a std::shared_ptr. C is no longer trivially copyable, and the dropped std::move would turn out to be beneficial again. (Also, if Clang and clang-tidy did implement the fixed rules for trivially copyable classes from CWG1734/C++17, where a subset of a trivially copyable class's copy/move members may be deleted, the above rule to warn "if std::move() is called with an argument of a trivially-copyable type" would no longer make sense as written; consider a trivially copyable class whose copy ctor has been deleted.) Change-Id: Icb91610e50ed98b8f55fe6323bdfa48c8cb9b4b9 Reviewed-on: https://gerrit.libreoffice.org/60166 Tested-by: Jenkins Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 06 Eyl, 2018 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I607891e120688b746c8a4c577018d97147a79217 Reviewed-on: https://gerrit.libreoffice.org/60029 Tested-by: Jenkins Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 30 Tem, 2018 1 kayıt (commit)
-
-
Gabor Kelemen yazdı
rtl/string.hxx and rtl/ustring.hxx both unnecessarily #include <sal/log.hxx> (and don't make use of it themselves), but many other files happen to depend on it. This is a continuation of commit 6ff2d84a to be able to remove those unneeded includes. This commit adds missing headers to every file found by: grep -FwL sal/log.hxx $(git grep -Elw 'SAL_INFO|SAL_INFO_IF|SAL_WARN|SAL_WARN_IF|SAL_DETAIL_LOG_STREAM|SAL_WHERE|SAL_STREAM|SAL_DEBUG') to directories from l10ntools to reportdesign Change-Id: Ia2dc93dd848c2dc0b6a8cb6e19849c614ec55198 Reviewed-on: https://gerrit.libreoffice.org/58205 Tested-by: Jenkins Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
- 27 Tem, 2018 1 kayıt (commit)
-
-
Noel Grandin yazdı
look for OUString being appended to in a loop, better to use OUStringBuffer to accumulate the results. Change-Id: Ia36e06e2781a7c546ce9cbad62727aa4c5f10c4b Reviewed-on: https://gerrit.libreoffice.org/58092 Tested-by: Jenkins Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 23 Eki, 2017 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: I73eed5cbaaa1a0668f0dfa89a1a26883f64b3107
-
- 21 Tem, 2017 1 kayıt (commit)
-
-
Caolán McNamara yazdı
* all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl * all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string") * ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching MODULE .mo files * UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui goes from l10n target to normal one, so the res/lang.zips of UI files go away * translation via Translation::get(hrc-define-key, imbued-std::locale) * python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there to keep finding the .hrc file uniform) so magic numbers can go away there * java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation mechanism * en-US res files go away, their strings are now the .hrc keys in the source code * remaining .res files are replaced by .mo files * in .res/.ui-lang-zip files, the old scheme missing translations of strings results in inserting the english original so something can be found, now the standard fallback of using the english original from the source key is used, so partial translations shrink dramatically in size * extract .hrc strings with hrcex which backs onto xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap * extract .ui strings with uiex which backs onto xgettext --add-comments --no-wrap * qtz for gettext translations is generated at runtime as ascii-ified crc32 of content + "|" + msgid * [API CHANGE] remove deprecated binary .res resouce loader related uno apis com::sun::star::resource::OfficeResourceLoader com::sun::star::resource::XResourceBundleLoader com::sun::star::resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
-
- 11 Tem, 2017 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: Ifa228ca02ea79a1309e1875414028aade7e5f12d Reviewed-on: https://gerrit.libreoffice.org/39801Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 05 Haz, 2017 1 kayıt (commit)
-
-
Arnaud Versini yazdı
This patch is graciously offered by Arnaud Versini. Change-Id: I3ed5e1758d09542a2ca0533e3f4a6ceb2dbb6346 Reviewed-on: https://gerrit.libreoffice.org/38404Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk> Tested-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 28 May, 2017 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I0490efedf459190521f4339854b3394d57765fdb Reviewed-on: https://gerrit.libreoffice.org/38058Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 28 Nis, 2017 1 kayıt (commit)
-
-
Christian Lohmaier yazdı
otherwise pocheck will file on strings like like e.g. #: analysis.src msgctxt "" "analysis.src\n" "ANALYSIS_Weeknum\n" "Returns the number of the calendar week in which the specified date occurs.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead.\n" "itemlist.text" msgid "" "Returns the number of the calendar week in which the specified date occurs.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." msgstr "" Change-Id: Ib64a989933ca42c5119b0ecf2339f693793d4e96
-
- 17 Ock, 2017 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I732e2e22c6f953f0982fbc8833453e7c23cf9d49 Reviewed-on: https://gerrit.libreoffice.org/33166Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 12 Eyl, 2016 2 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: I806cb0a1ede9c025c00fab58a3fd8835887c0a44
-
Caolán McNamara yazdı
Change-Id: I5c628a063fb5309f493729ee4bd7b122a3d2c3d5
-
- 27 Tem, 2016 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I4258bcc97273d8bb7a8c4879fac02a427f76e18c Reviewed-on: https://gerrit.libreoffice.org/27317Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noelgrandin@gmail.com>
-
- 25 May, 2016 1 kayıt (commit)
-
-
Michael Stahl yazdı
Tested with output of "make translations", it apparently computes the same CRC function, despite the documentation specifying different polynomials, but maybe that is just different notations... Change-Id: Ia28a881f5cdf54326fe5051527acd445e7a5771c
-
- 14 Nis, 2016 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I80070c83204e531c2f599f8a56193d6ffe0e5022
-
- 05 Nis, 2016 2 kayıt (commit)
-
-
Tor Lillqvist yazdı
Change-Id: I21620816a80e542fe9771ef22322c4bc42ce50bd
-
Tor Lillqvist yazdı
Change-Id: If86e2df6d24766c5685466c4c6fc63ecba798000
-
- 04 Nis, 2016 1 kayıt (commit)
-
-
jan iversen yazdı
changes due a log from clang tinderbox. minor changes to interpret more files Change-Id: I3821aab91dc21e74c870628a4f2265ab61d37cca
-
- 30 Mar, 2016 1 kayıt (commit)
-
-
Wastack yazdı
Change-Id: I2e495243b75fc239dafbf63c7644115f0a923f4a Reviewed-on: https://gerrit.libreoffice.org/23607Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
David Tardon <dtardon@redhat.com>
-
- 27 Şub, 2016 1 kayıt (commit)
-
-
Julien Nabet yazdı
Change-Id: I3760e50796605ce50ef2e91951fc839b84669b89 Reviewed-on: https://gerrit.libreoffice.org/22733Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Julien Nabet <serval2412@yahoo.fr>
-
- 14 Kas, 2015 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Id63bbdd11af66de6be8a3e9dfca1c7efbe74b08a
-
- 10 Kas, 2015 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: I87dbff06345f24064b87c375e5381cb27118e614
-
- 20 Agu, 2015 1 kayıt (commit)
-
-
Noel Grandin yazdı
find places where we should be using std::unique_ptr Change-Id: I5b9defe778fdc4738ecea381215396874db59e66
-
- 26 Ock, 2015 1 kayıt (commit)
-
-
Noel Grandin yazdı
Where we can prove that the virtual method is never overriden. In the case of pure-virtual methods, we remove the method entirely. Sometimes this leads to entire methods and fields being eliminated. Change-Id: I138ef81c95f115dbd8c023a83cfc7e9d5d6d14ae
-
- 05 Ara, 2014 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: Id2eb27132fd6c1734e50c02617ce1bbb75e294a0
-
- 13 Agu, 2014 1 kayıt (commit)
-
-
Michael Stahl yazdı
Change-Id: I2ed53b4f902ae694fc064375e8a9cfeba32f9d1c
-
- 26 Şub, 2014 1 kayıt (commit)
-
-
Alexander Wilms yazdı
Change-Id: Ia10056ae9e1b9adfe74f299afac5c3c84fa8cea7 Reviewed-on: https://gerrit.libreoffice.org/8278Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
- 17 Kas, 2013 1 kayıt (commit)
-
-
Andras Timar yazdı
Change-Id: I56c1190c93333636981acf2dd271515170a8a904
-
- 29 Haz, 2013 1 kayıt (commit)
-
-
Thomas Arnhold yazdı
follow-up of a7674482 Change-Id: I25f40c601454c092078307d931333af1bc1447ac
-