summaryrefslogtreecommitdiff
path: root/test/pixmaps
diff options
context:
space:
mode:
authorMatthias Melcher <git@matthiasm.com>2019-02-05 00:14:37 +0100
committerMatthias Melcher <git@matthiasm.com>2019-02-05 00:14:37 +0100
commit7d9d7dd7b84b077e04d47ddf28961a1f99cbede4 (patch)
tree1c056cec61744fe930e0a1467d2d45ce6f3f25d0 /test/pixmaps
parent4b4e95f2805375ac80b5921e19c1049090f3a5c8 (diff)
Fixed all Pixmaps to be '*const' (STR #3108).
Diffstat (limited to 'test/pixmaps')
-rw-r--r--test/pixmaps/blast.xpm2
-rw-r--r--test/pixmaps/blue.xpm2
-rw-r--r--test/pixmaps/blue_bomb.xpm2
-rw-r--r--test/pixmaps/cyan.xpm2
-rw-r--r--test/pixmaps/cyan_bomb.xpm2
-rw-r--r--test/pixmaps/gray.xpm2
-rw-r--r--test/pixmaps/gray_bomb.xpm2
-rw-r--r--test/pixmaps/green.xpm2
-rw-r--r--test/pixmaps/green_bomb.xpm2
-rw-r--r--test/pixmaps/magenta.xpm2
-rw-r--r--test/pixmaps/magenta_bomb.xpm2
-rw-r--r--test/pixmaps/porsche.xpm2
-rw-r--r--test/pixmaps/porsche1.xpm2
-rw-r--r--test/pixmaps/red.xpm2
-rw-r--r--test/pixmaps/red_bomb.xpm2
-rw-r--r--test/pixmaps/tile.xpm2
-rw-r--r--test/pixmaps/yellow.xpm2
-rw-r--r--test/pixmaps/yellow_bomb.xpm2
18 files changed, 18 insertions, 18 deletions
diff --git a/test/pixmaps/blast.xpm b/test/pixmaps/blast.xpm
index 19d0bc7b0..49418ee9b 100644
--- a/test/pixmaps/blast.xpm
+++ b/test/pixmaps/blast.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * blast_xpm[] = {
+static const char * const blast_xpm[] = {
"32 32 32 1",
" c #905518",
". c #9F580E",
diff --git a/test/pixmaps/blue.xpm b/test/pixmaps/blue.xpm
index 89c412e63..67d03de62 100644
--- a/test/pixmaps/blue.xpm
+++ b/test/pixmaps/blue.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * blue_xpm[] = {
+static const char * const blue_xpm[] = {
"32 32 32 1",
" c #000100",
". c #0000A5",
diff --git a/test/pixmaps/blue_bomb.xpm b/test/pixmaps/blue_bomb.xpm
index 72c267eca..d96710540 100644
--- a/test/pixmaps/blue_bomb.xpm
+++ b/test/pixmaps/blue_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * blue_bomb_xpm[] = {
+static const char * const blue_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #010047",
diff --git a/test/pixmaps/cyan.xpm b/test/pixmaps/cyan.xpm
index 37f74d6dd..88dc450b9 100644
--- a/test/pixmaps/cyan.xpm
+++ b/test/pixmaps/cyan.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * cyan_xpm[] = {
+static const char * const cyan_xpm[] = {
"32 32 32 1",
" c #000100",
". c #143144",
diff --git a/test/pixmaps/cyan_bomb.xpm b/test/pixmaps/cyan_bomb.xpm
index 4936f849c..3bbc52ddd 100644
--- a/test/pixmaps/cyan_bomb.xpm
+++ b/test/pixmaps/cyan_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * cyan_bomb_xpm[] = {
+static const char * const cyan_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #003A3A",
diff --git a/test/pixmaps/gray.xpm b/test/pixmaps/gray.xpm
index e5da3fc54..d33c34c48 100644
--- a/test/pixmaps/gray.xpm
+++ b/test/pixmaps/gray.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * gray_xpm[] = {
+static const char * const gray_xpm[] = {
"32 32 32 1",
" c #000100",
". c #2C393F",
diff --git a/test/pixmaps/gray_bomb.xpm b/test/pixmaps/gray_bomb.xpm
index 808c50136..80831901f 100644
--- a/test/pixmaps/gray_bomb.xpm
+++ b/test/pixmaps/gray_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * gray_bomb_xpm[] = {
+static const char * const gray_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #2C2E2B",
diff --git a/test/pixmaps/green.xpm b/test/pixmaps/green.xpm
index 6a5889797..a98f4cbd3 100644
--- a/test/pixmaps/green.xpm
+++ b/test/pixmaps/green.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * green_xpm[] = {
+static const char * const green_xpm[] = {
"32 32 32 1",
" c #000100",
". c #022D01",
diff --git a/test/pixmaps/green_bomb.xpm b/test/pixmaps/green_bomb.xpm
index 7e1d5e751..f4f9b312d 100644
--- a/test/pixmaps/green_bomb.xpm
+++ b/test/pixmaps/green_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * green_bomb_xpm[] = {
+static const char * const green_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #003700",
diff --git a/test/pixmaps/magenta.xpm b/test/pixmaps/magenta.xpm
index 2405cee0c..375055e70 100644
--- a/test/pixmaps/magenta.xpm
+++ b/test/pixmaps/magenta.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * magenta_xpm[] = {
+static const char * const magenta_xpm[] = {
"32 32 32 1",
" c #000100",
". c #380F3F",
diff --git a/test/pixmaps/magenta_bomb.xpm b/test/pixmaps/magenta_bomb.xpm
index 4cd1816ca..a82c138eb 100644
--- a/test/pixmaps/magenta_bomb.xpm
+++ b/test/pixmaps/magenta_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * magenta_bomb_xpm[] = {
+static const char * const magenta_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #3A033B",
diff --git a/test/pixmaps/porsche.xpm b/test/pixmaps/porsche.xpm
index be33073ff..bdf8e227e 100644
--- a/test/pixmaps/porsche.xpm
+++ b/test/pixmaps/porsche.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * porsche_xpm[] = {
+static const char * const porsche_xpm[] = {
"64 64 4 1",
" c #background",
". c #000000000000",
diff --git a/test/pixmaps/porsche1.xpm b/test/pixmaps/porsche1.xpm
index aa8fe9420..5662174e4 100644
--- a/test/pixmaps/porsche1.xpm
+++ b/test/pixmaps/porsche1.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * porsche[] = {
+static const char * const porsche[] = {
/* width height ncolors chars_per_pixel */
"64 64 4 1",
/* colormap */
diff --git a/test/pixmaps/red.xpm b/test/pixmaps/red.xpm
index 46726184d..aa443d984 100644
--- a/test/pixmaps/red.xpm
+++ b/test/pixmaps/red.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * red_xpm[] = {
+static const char * const red_xpm[] = {
"32 32 32 1",
" c #000100",
". c #2D0001",
diff --git a/test/pixmaps/red_bomb.xpm b/test/pixmaps/red_bomb.xpm
index 312fbd331..9ce2a7e1d 100644
--- a/test/pixmaps/red_bomb.xpm
+++ b/test/pixmaps/red_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * red_bomb_xpm[] = {
+static const char * const red_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #340001",
diff --git a/test/pixmaps/tile.xpm b/test/pixmaps/tile.xpm
index ddc656eff..f09658ea6 100644
--- a/test/pixmaps/tile.xpm
+++ b/test/pixmaps/tile.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * tile_xpm[] = {
+static const char * const tile_xpm[] = {
"100 100 17 1",
" c None",
". c #DCDCDC",
diff --git a/test/pixmaps/yellow.xpm b/test/pixmaps/yellow.xpm
index b493296a9..8122c889f 100644
--- a/test/pixmaps/yellow.xpm
+++ b/test/pixmaps/yellow.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * yellow_xpm[] = {
+static const char * const yellow_xpm[] = {
"32 32 32 1",
" c #000100",
". c #2A4602",
diff --git a/test/pixmaps/yellow_bomb.xpm b/test/pixmaps/yellow_bomb.xpm
index f95ee9b41..9bf4781a3 100644
--- a/test/pixmaps/yellow_bomb.xpm
+++ b/test/pixmaps/yellow_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * yellow_bomb_xpm[] = {
+static const char * const yellow_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #393900",