aboutsummaryrefslogtreecommitdiff
path: root/extra/webkit2gtk/patches/fix-sourcebrush.patch
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2023-07-04 15:53:53 +0200
committerCem Keylan <cem@ckyln.com>2023-07-04 15:53:53 +0200
commitdfcedc36152cd6d9f5f83d506d1b47ce0d235a97 (patch)
treef388b26b19e1d9f53dc7cc0067952e038fd25b68 /extra/webkit2gtk/patches/fix-sourcebrush.patch
parentfdc99b69b6c85ab4190beb9abb468499c5c0a40d (diff)
downloadrepository-dfcedc36152cd6d9f5f83d506d1b47ce0d235a97.tar.gz
webkit2gtk: bump to 2.40.3
Diffstat (limited to 'extra/webkit2gtk/patches/fix-sourcebrush.patch')
-rw-r--r--extra/webkit2gtk/patches/fix-sourcebrush.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/extra/webkit2gtk/patches/fix-sourcebrush.patch b/extra/webkit2gtk/patches/fix-sourcebrush.patch
deleted file mode 100644
index c553d66e..00000000
--- a/extra/webkit2gtk/patches/fix-sourcebrush.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -ur a/Source/WebCore/platform/graphics/SourceBrush.cpp b/Source/WebCore/platform/graphics/SourceBrush.cpp
---- a/Source/WebCore/platform/graphics/SourceBrush.cpp Wed May 24 13:31:50 2023
-+++ b/Source/WebCore/platform/graphics/SourceBrush.cpp Wed May 24 13:31:24 2023
-@@ -65,12 +65,12 @@
-
- void SourceBrush::setGradient(Ref<Gradient>&& gradient, const AffineTransform& spaceTransform)
- {
-- m_brush = { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
-+ m_brush = Brush { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
- }
-
- void SourceBrush::setPattern(Ref<Pattern>&& pattern)
- {
-- m_brush = { Brush::Variant { std::in_place_type<Ref<Pattern>>, WTFMove(pattern) } };
-+ m_brush = Brush { Brush::Variant { std::in_place_type<Ref<Pattern>>, WTFMove(pattern) } };
- }
-
- WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush)