diff -r f40343b498ef -r 4b25e7003868 lemon/color.h --- a/lemon/color.h Thu Aug 10 10:11:07 2006 +0000 +++ b/lemon/color.h Thu Aug 10 10:18:04 2006 +0000 @@ -81,7 +81,7 @@ ///This is a true \ref concept::ReferenceMap "reference map", so you can also ///change the actual colors. -class ColorSet : public MapBase +class Palette : public MapBase { std::vector colors; public: @@ -96,7 +96,7 @@ ///If \c num is less then 26/27 then the default color list is cut. Otherwise ///the color list is filled repeatedly with the default color list. ///(The colors can be changed later on.) - ColorSet(bool have_white=false,int num=0) + Palette(bool have_white=false,int num=0) { do { if(have_white) colors.push_back(Color(1,1,1));