#!/bin/bash # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # This will reorder icon-themes/*/links.txt to the right order for I in icon-themes/*/links.txt ; do D="${I%/links.txt}" cat "$I" | while read LINK ORIG do if [ -f "$D/$LINK" -a -f "$D/$ORIG" ] ; then if diff "$D/$LINK" "$D/$ORIG" >/dev/null 2>&1 ; then echo "$I: removing $LINK from git: both $LINK and $ORIG are the same files" 1>&2 git rm "$D/$LINK" 1>/dev/null echo $LINK $ORIG else echo "$I: link and orig differs, check the images, and remove manually: $LINK $ORIG" 1>&2 echo $LINK $ORIG fi elif [ -f "$D/$LINK" ] ; then echo "$I: swapping to right order: $ORIG $LINK" 1>&2 echo $ORIG $LINK elif [ -n "$LINK" -a "${LINK:0:1}" != "#" -a ! -f "$D/$LINK" -a ! -f "$D/$ORIG" ] ; then echo "$I: neither exists, removing the line: $LINK $ORIG" 1>&2 else echo $LINK $ORIG fi done > "$I-fixed" mv "$I-fixed" "$I" done # vim: set expandtab sw=4 ts=4: /option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/editeng/inc/pch
AgeCommit message (Expand)Author
2023-12-07simplify and modernise ScopedBitmapAccessNoel Grandin
2023-10-11Drop o3tl::span, can use C++20 std::span directly nowStephan Bergmann
2023-01-12introduce docmodel comp., model::ThemeColor, use it in SvxColorItemTomaž Vajngerl
2022-09-16vcl: AnimationBitmap -> AnimationFrameChris Sherlock
2022-09-14move ErrCode to comphelper and improve debug output stringNoel Grandin
2022-08-18Move tools/diagnose_ex.h to comphelper/diagnose_ex.hxxStephan Bergmann
2021-07-29drop some unneeded includesCaolán McNamara
2021-04-08update PCHsLuboš Luňák
2021-03-21update pchesCaolán McNamara
2021-03-09Make sal/config.h the first in pchMike Kaganski
2021-02-19update pchesCaolán McNamara
2021-02-08update pchesCaolán McNamara
2020-12-15update pchesCaolán McNamara
2020-12-04update pchesCaolán McNamara
2020-08-14rename nmspmap.hxx -> namespacemap.hxxNoel Grandin
2020-04-26update pchesCaolán McNamara
2020-04-22uiobject.hxx only needs forward declaresCaolán McNamara
2020-02-21Drop o3tl::optional wrapperStephan Bergmann
2020-02-01make update_pch also consider files in <module>/src/**/incLuboš Luňák
2019-12-01Introduce o3tl::optional as an alias for std::optionalStephan Bergmann
2019-10-18make bin/update_pch.s always include code in trivial #if'sLuboš Luňák
2019-05-12regenerate PCH headersLuboš Luňák
2019-05-09regenerate PCH headers for the 4 new levelsLuboš Luňák
2019-01-21o3tl::make_unique -> std::make_unique in dbaccess...frameworkGabor Kelemen
2018-10-06drop some now unnecessary includesCaolán McNamara
2018-08-14SvxCharSetColorItem can be removedNoel Grandin
2018-03-20drop unnecessary includesCaolán McNamara
2018-03-02delete colordata.hxxNoel Grandin
2017-09-22Fresh run of bin/update_pch.shMike Kaganski
2017-08-01move resmgr to unotoolsCaolán McNamara
2017-07-21migrate to boost::gettextCaolán McNamara
2017-04-27tools: move errcode.hxx to the vcl moduleChris Sherlock
2017-04-20loplugin:unusedmethodsNoel Grandin