Skip to content
Snippets Groups Projects
Commit 87303ae8 authored by slevy's avatar slevy
Browse files

constify.

parent 2a6624e7
No related branches found
No related tags found
No related merge requests found
......@@ -110,8 +110,8 @@ void lerp_cb( Fl_Slider *sl, void * ) {
}
void rgbmode_cb( Fl_Button *btn, void * ) {
static char *btnlbl[2] = { "RGB", "HSB" };
static char *hsblbls[3][2] = {
static const char *btnlbl[2] = { "RGB", "HSB" };
static const char *hsblbls[3][2] = {
{ "Red(L)", "Hue(L)" },
{ "Green(M)", "Sat(M)" },
{ "Blue(R)", "Bright(R)" } };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment