#!/usr/bin/env bash r= b= g="$(git rev-parse --git-dir 2>/dev/null)" if [ -n "$g" ]; then if [ -d "$g/../.dotest" ] then if test -f "$g/../.dotest/rebasing" then r="|REBASE" elif test -f "$g/../.dotest/applying" then r="|AM" else r="|AM/REBASE" fi b="$(git symbolic-ref HEAD 2>/dev/null)" elif [ -f "$g/.dotest-merge/interactive" ] then r="|REBASE-i" b="$(cat "$g/.dotest-merge/head-name")" elif [ -d "$g/.dotest-merge" ] then r="|REBASE-m" b="$(cat "$g/.dotest-merge/head-name")" elif [ -f "$g/MERGE_HEAD" ] then r="|MERGING" b="$(git symbolic-ref HEAD 2>/dev/null)" else if [ -f "$g/BISECT_LOG" ] then r="|BISECTING" fi if ! b="$(git symbolic-ref HEAD 2>/dev/null)" then if ! b="$(git describe --exact-match HEAD 2>/dev/null)" then b="$(cut -c1-7 "$g/HEAD")..." fi fi fi if [ -n "$1" ]; then printf "$1" "${b##refs/heads/}$r" else printf "%s" "${b##refs/heads/}$r" fi else printf "not-in-git" fi tro/capgemini/cg-4.1'>distro/capgemini/cg-4.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/shapepropertymap.cxx
AgeCommit message (Expand)Author
2020-07-01Upcoming improved loplugin:staticanonymous -> redundantstatic: ooxStephan Bergmann
2020-04-23tdf#130058 Import shadow size.Gülşah Köse
2020-04-22uiobject.hxx only needs forward declaresCaolán McNamara
2020-01-31new loplugin:namespaceindentationNoel Grandin
2020-01-15clang-tidy modernize-concat-nested-namespace in ooxNoel Grandin
2019-08-15tdf#126746 Add support for import/export line caps for .pptx formatBartosz Kosiorek
2018-11-18tdf#94231 OOXML Import: Fix disappeared Hatch Background ColorBalazs Varga
2018-11-05tdf#108104 OOXML Import: Fix Hatch fill in ChartsBalazs Varga
2018-03-07oox: rename FillBitmapUrl to FillBitmap, remove obsolete methodsTomaž Vajngerl
2018-03-07oox: remove property FillBitmapURL, BackGraphicURL and GraphicURLTomaž Vajngerl
2018-03-07Move BackGraphicURL property & friends to BackGraphic + fixesTomaž Vajngerl
2018-02-01Change bitmap table to store XBitmap instead of GraphicObject URLTomaž Vajngerl
2018-01-26tdf#107608: PPTX: Import pattern fill background colorTamás Zolnai
2017-10-23loplugin:includeform: ooxStephan Bergmann
2017-05-02loplugin:checkunusedparams in ooxNoel Grandin
2016-09-17convert ShapePropertyId to scoped enum and use it for enumarrayJochen Nitschke
2016-05-10tdf#42949: clean up includes in include/oox/helper with iwyuJorenz Paragas