From 9e2e6c11157166612f0178ac0d7c3144f7d95fe4 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 28 Sep 2017 21:06:52 -0400 Subject: [PATCH] gsk: Fix a typo Repeating linear gradient nodes share most of the implementation with linear gradient nodes, but they shouldn't share the class name. --- gsk/gskrendernodeimpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gsk/gskrendernodeimpl.c b/gsk/gskrendernodeimpl.c index bda975de18..f0c0f02612 100644 --- a/gsk/gskrendernodeimpl.c +++ b/gsk/gskrendernodeimpl.c @@ -294,7 +294,7 @@ static const GskRenderNodeClass GSK_LINEAR_GRADIENT_NODE_CLASS = { static const GskRenderNodeClass GSK_REPEATING_LINEAR_GRADIENT_NODE_CLASS = { GSK_REPEATING_LINEAR_GRADIENT_NODE, sizeof (GskLinearGradientNode), - "GskLinearGradientNode", + "GskRepeatingLinearGradientNode", gsk_linear_gradient_node_finalize, gsk_linear_gradient_node_draw, gsk_linear_gradient_node_serialize,