Kaydet (Commit) baba1d14 authored tarafından Noel Grandin's avatar Noel Grandin

tdf#93068 - UI: Crash when Character dialogue opened

Change-Id: I92a9e6f27ef649c9d7501df55287c95c4d796156
üst d97cc94a
......@@ -16,11 +16,15 @@
# (6) use awk to to check if only one match for a given constant was found
# (7) if so, generate a sed command to remove the #define
#
git grep -hP '^#define\s+\w+.*\\' -- "[!e][!x][!t]*" \
| sed -r 's/#define[ ]+([a-zA-Z0-9_]+).*/\1/' \
( git grep -hP '^\w*#define\s+\w+.*\\' -- "[!e][!x][!t]*" \
&& \
git grep -hP '^\w*#define\s+\w+\s*$' -- "[!e][!x][!t]*" ) \
| grep -v '_idl' \
| grep -vE '^INCLUDED_' \
| sed -r 's/[ ]*#define[ ]+([a-zA-Z0-9_]+).*/\1/' \
| sort \
| uniq \
| xargs -Ixxx sh -c \
| xargs -Ixxx -n 1 -P 8 sh -c \
"git grep -w 'xxx' | awk -f bin/find-unused-defines.awk -v p1=xxx && echo \"xxx\" 1>&2"
......@@ -47,7 +47,7 @@ enum class SvxBackgroundTabFlags
};
namespace o3tl
{
template<> struct typed_flags<SvxBackgroundTabFlags> : is_typed_flags<SvxBackgroundTabFlags, 0x0f> {};
template<> struct typed_flags<SvxBackgroundTabFlags> : is_typed_flags<SvxBackgroundTabFlags, 0x19> {};
}
// flags for SvxBorderTabPage
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment