aboutsummaryrefslogtreecommitdiff
path: root/source/rw/cui
AgeCommit message (Expand)Author
2022-05-25update translations for master/7.4Christian Lohmaier
2022-05-12update translations for 7.4.0 alpha1Christian Lohmaier
2022-05-04update translations for masterChristian Lohmaier
2022-04-26update translations for masterChristian Lohmaier
2022-04-11update translations for masterChristian Lohmaier
2022-04-04update translations for masterChristian Lohmaier
2022-02-18update translations for masterChristian Lohmaier
2022-01-31update translations for masterChristian Lohmaier
2022-01-10update translations for 7.3.0 rc2/masterChristian Lohmaier
2021-12-21update translations for 7.3.0 rc1Christian Lohmaier
2021-11-24update translations for master/7.3.0 beta1Christian Lohmaier
2021-11-16update translations for masterChristian Lohmaier
2021-10-04update translations for masterChristian Lohmaier
2021-09-27update translations for masterChristian Lohmaier
2021-09-14update translations for masterChristian Lohmaier
2021-07-08update translations for 7.2 / masterChristian Lohmaier
2021-06-24update translations for 7.2 / masterChristian Lohmaier
2021-06-13update translations for 7.2.0 beta1libreoffice-7-2-branch-pointChristian Lohmaier
2021-05-31update translations for masterChristian Lohmaier
2021-05-14update translations for 7.2.0 alpha1Christian Lohmaier
2021-04-28update translations for masterChristian Lohmaier
2021-04-12update translations for masterChristian Lohmaier
2021-04-06update translations for masterChristian Lohmaier
2021-03-30update translations for masterChristian Lohmaier
2021-03-23update translations for masterChristian Lohmaier
2021-02-22update translations for masterChristian Lohmaier
2021-02-17update translations for masterChristian Lohmaier
2021-02-08update translations for masterChristian Lohmaier
2021-01-30update translations for masterChristian Lohmaier
2021-01-25update translations for masterChristian Lohmaier
2021-01-14update translations for masterChristian Lohmaier
2020-12-17update translations for 7.1.0 rc1Christian Lohmaier
2020-12-15update translations for master/7.1.0 rc1Christian Lohmaier
2020-12-08update translations for master/7.1Christian Lohmaier
2020-11-16update translations for masterChristian Lohmaier
2020-10-27update translations for masterChristian Lohmaier
2020-10-27update translations for master / 7.1.0.0 alpha1Christian Lohmaier
2020-10-23update translations for master/7.1.0 alpha1Christian Lohmaier
2020-10-12update translations for masterChristian Lohmaier
2020-09-28update translations for masterChristian Lohmaier
2020-09-07update translations for masterChristian Lohmaier
2020-08-27update translations for masterChristian Lohmaier
2020-08-21update translations for masterChristian Lohmaier
2020-08-17update translations for masterChristian Lohmaier
2020-08-04update translations for masterChristian Lohmaier
2020-07-27update translations for masterChristian Lohmaier
2020-07-13update translations for master/7.0Christian Lohmaier
2020-07-02update translations for 7.0.0 rc1Christian Lohmaier
2020-06-24update translations for master/7.0 and add ckb (Central Kurdish) filesChristian Lohmaier
2020-06-16update translations for 7.0 beta2Christian Lohmaier
n value='libreoffice-6-3-3'>libreoffice-6-3-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/drawinglayer/source/primitive3d/modifiedcolorprimitive3d.cxx
AgeCommit message (Collapse)Author
2024-05-16tdf#146619 Drop unused 'using namespace com::sun::star'Gabor Kelemen
now that find-unused-includes was expanded with detecting these Change-Id: I9f21ad1a85c1e3178cad98464b2ba407d909b62d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167638 Reviewed-by: Gabor Kelemen <gabor.kelemen.extern@allotropia.de> Tested-by: Jenkins
2022-06-15clang-tidy modernize-pass-by-value in drawinglayerNoel Grandin
Change-Id: I8a3245c6a4d687edbc95cf28b2932d80c86a7b65 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135828 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2020-05-26Fix loplugin:simplifypointertobool for libstdc++ std::shared_ptrStephan Bergmann
...where the get member function is defined on a std::__shared_ptr base class, so loplugin:simplifypointertobool used to miss those until now. (While e.g. using libc++ on macOS found those cases.) 366d08f2f6d4de922f6099c62bb81b49d89e0a68 "new loplugin:simplifypointertobool" was mistaken in breaking isSmartPointerType(const clang::Type* t) out of isSmartPointerType(const Expr* e); c874294ad9fb178df47c66875bfbdec466e39763 "Fix detection of std::unique_ptr/shared_ptr in loplugin:redundantpointerops" had introduced that indivisible two-step algorithm on purpose. The amount of additional hits (on Linux) apparently asked for turning loplugin:simplifypointertobool into a rewriting plugin. Which in turn showed that the naive adivce to just "drop the get()" is not sufficient in places that are not contextually converted to bool, as those places need to be wrapped in a bool(...) functional cast now. If the expression was already wrapped in parentheses, those could be reused as part of the functional cast, but implementing that showed that such cases are not yet found at all by the existing loplugin:simplifypointertobool. Lets leave that TODO for another commit. Besides the changes to compilerplugins/ itself, this change has been generated fully automatically with the rewriting plugin on Linux. Change-Id: I83107d6f634fc9ac232986f49044d7017df83e2a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94888 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Jenkins
2020-01-20clang-tidy modernize-concat-nested-namespace in drawinglayerNoel Grandin
Change-Id: If2644743ab0d9b78d42d1d2fe6fa22c83472d2c1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87065 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2019-10-08loplugin:redundantpointerops simplify *p.get()Noel Grandin
Change-Id: I12517651fb3f777fd08e384992bb3e84b340ad85 Reviewed-on: https://gerrit.libreoffice.org/80382 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>