diff --git a/src/common/QskHctColor.h b/src/common/QskHctColor.h index 80f468a9..d8782e12 100644 --- a/src/common/QskHctColor.h +++ b/src/common/QskHctColor.h @@ -30,7 +30,7 @@ QVector< QRgb > pal; for ( int tone = 0; tone <= 100; tone += 10 ) - pal += rgbFromHct( hue, chroma, tone ); + pal += QskHctColor::rgb( hue, chroma, tone ); return pal; } diff --git a/src/common/QskRgbValue.h b/src/common/QskRgbValue.h index 17302613..b963c115 100644 --- a/src/common/QskRgbValue.h +++ b/src/common/QskRgbValue.h @@ -133,7 +133,7 @@ RGBVALUE( Red, 0xffff0000 ) \ RGBVALUE( RosyBrown, 0xffbc8f8f ) \ RGBVALUE( RoyalBlue, 0xff4169e1 ) \ - RGBVALUE( SaddleBown, 0xff8b4513 ) \ + RGBVALUE( SaddleBrown, 0xff8b4513 ) \ RGBVALUE( Salmon, 0xfffa8072 ) \ RGBVALUE( SandyBrown, 0xfff4a460 ) \ RGBVALUE( SeaGreen, 0xff2e8b57 ) \