Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Stuart Levy
partiview
Commits
87303ae8
Commit
87303ae8
authored
Aug 04, 2017
by
slevy
Browse files
constify.
parent
2a6624e7
Changes
1
Show whitespace changes
Inline
Side-by-side
cmed/cmed.C
View file @
87303ae8
...
...
@@ -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)"
}
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment