bump product version to 7.2.5.1
[LibreOffice.git] / external / skia / fix-warnings.patch.1
blobfc941873981098430d32dd72ef94b97766e7fa75
1 diff --git a/include/core/SkFontParameters.h b/include/core/SkFontParameters.h
2 index ae4f1d68b6..71263da7c5 100644
3 --- a/include/core/SkFontParameters.h
4 +++ b/include/core/SkFontParameters.h
5 @@ -16,8 +16,8 @@ struct SkFontParameters {
6          // Parameters in a variation font axis.
7          struct Axis {
8              constexpr Axis() : tag(0), min(0), def(0), max(0), flags(0) {}
9 -            constexpr Axis(SkFourByteTag tag, float min, float def, float max, bool hidden) :
10 -                tag(tag), min(min), def(def), max(max), flags(hidden ? HIDDEN : 0) {}
11 +            constexpr Axis(SkFourByteTag _tag, float _min, float _def, float _max, bool hidden) :
12 +                tag(_tag), min(_min), def(_def), max(_max), flags(hidden ? HIDDEN : 0) {}
14              // Four character identifier of the font axis (weight, width, slant, italic...).
15              SkFourByteTag tag;
16 diff --git a/tools/sk_app/WindowContext.h b/tools/sk_app/WindowContext.h
17 index f143dab013..be3cde0f4f 100644
18 --- a/tools/sk_app/WindowContext.h
19 +++ b/tools/sk_app/WindowContext.h
20 @@ -31,7 +31,7 @@ public:
22      virtual void resize(int w, int h) = 0;
24 -    virtual void activate(bool isActive) {}
25 +    virtual void activate(bool /*isActive*/) {}
27      const DisplayParams& getDisplayParams() { return fDisplayParams; }
28      virtual void setDisplayParams(const DisplayParams& params) = 0;