summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch b/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch
deleted file mode 100644
index 762de40995..0000000000
--- a/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From 93920b55f52ff8b883296f4845269e2ed746acb3 Mon Sep 17 00:00:00 2001
2From: Michael Catanzaro <mcatanzaro@redhat.com>
3Date: Fri, 31 Mar 2023 12:24:09 -0700
4Subject: [PATCH] Fix build of SourceBrush.cpp
5 https://bugs.webkit.org/show_bug.cgi?id=254821
6
7Unreviewed build fix.
8
9* Source/WebCore/platform/graphics/SourceBrush.cpp:
10(WebCore::SourceBrush::setGradient):
11(WebCore::SourceBrush::setPattern):
12
13Canonical link: https://commits.webkit.org/262434@main
14
15Upstream-Status: Backport [https://github.com/WebKit/WebKit/commit/93920b55f52ff8b883296f4845269e2ed746acb3]
16Signed-off-by: Khem Raj <raj.khem@gmail.com>
17---
18 Source/WebCore/platform/graphics/SourceBrush.cpp | 4 ++--
19 1 file changed, 2 insertions(+), 2 deletions(-)
20
21--- a/Source/WebCore/platform/graphics/SourceBrush.cpp
22+++ b/Source/WebCore/platform/graphics/SourceBrush.cpp
23@@ -65,12 +65,12 @@ Pattern* SourceBrush::pattern() const
24
25 void SourceBrush::setGradient(Ref<Gradient>&& gradient, const AffineTransform& spaceTransform)
26 {
27- m_brush = { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
28+ m_brush = Brush { Brush::LogicalGradient { { WTFMove(gradient) }, spaceTransform } };
29 }
30
31 void SourceBrush::setPattern(Ref<Pattern>&& pattern)
32 {
33- m_brush = { WTFMove(pattern) };
34+ m_brush = Brush { WTFMove(pattern) };
35 }
36
37 WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush)