Constify xpms.

This commit is contained in:
Sylvain Pion 2007-03-10 12:51:25 +00:00
parent 5d8d4c8dec
commit fac1f26a61
2 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/* XPM */
static char *grid_xpm[] = {
static const char *grid_xpm[] = {
/* width height ncolors chars_per_pixel */
"32 32 2 1",
/* colors */

View File

@ -107,7 +107,7 @@ public:
};
/* XPM */
static char *show_hot_points_small_xpm[] = {
static const char *show_hot_points_small_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 3 1",
" c black",
@ -133,7 +133,7 @@ static char *show_hot_points_small_xpm[] = {
};
/* XPM */
static char *show_hot_points_xpm[] = {
static const char *show_hot_points_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 3 1",
" c black",
@ -175,7 +175,7 @@ static char *show_hot_points_xpm[] = {
};
/* XPM */
static char *show_inputs_small_xpm[] = {
static const char *show_inputs_small_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 3 1",
" c black",
@ -201,7 +201,7 @@ static char *show_inputs_small_xpm[] = {
};
/* XPM */
static char *show_inputs_xpm[] = {
static const char *show_inputs_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 3 1",
" c black",
@ -243,7 +243,7 @@ static char *show_inputs_xpm[] = {
};
/* XPM */
static char *show_outputs_small_xpm[] = {
static const char *show_outputs_small_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 3 1",
" c black",
@ -269,7 +269,7 @@ static char *show_outputs_small_xpm[] = {
};
/* XPM */
static char *show_outputs_xpm[] = {
static const char *show_outputs_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 3 1",
" c black",