aboutsummaryrefslogtreecommitdiff
path: root/extra/webkit2gtk/patches/fix-sourcebrush.patch
blob: c553d66e953f338adeebd6c8a43feaee64286b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)