making some getters public

This commit is contained in:
Uwe Rathmann 2019-04-18 16:11:05 +02:00
parent 9ba37738af
commit c91e3039d4
1 changed files with 3 additions and 3 deletions

View File

@ -108,12 +108,12 @@ class QSK_EXPORT QskGradient
uint hash( uint seed ) const;
qreal stopAt( int index ) const;
QColor colorAt( int index ) const;
private:
void setStopAt( int index, qreal stop );
qreal stopAt( int index ) const;
void setColorAt( int index, const QColor& color );
QColor colorAt( int index ) const;
Orientation m_orientation;
QVector< QskGradientStop > m_stops;