From ab0fe2ac1cbcaf0d0f6dc76eadd1da1fc939c5c9 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Fri, 21 Jan 2022 07:49:38 +0100 Subject: [PATCH] constructor fixed --- src/common/QskGradient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/QskGradient.cpp b/src/common/QskGradient.cpp index 4809a234..7e1ec065 100644 --- a/src/common/QskGradient.cpp +++ b/src/common/QskGradient.cpp @@ -215,7 +215,7 @@ QskGradient::QskGradient( Qt::Orientation orientation, const QskGradientStops& s QskGradient::QskGradient( Orientation orientation, const QskGradientStops& stops ) : QskGradient( orientation ) { - m_stops = stops; + setStops( stops ); } QskGradient::~QskGradient()