summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2006-08-26 13:06:15 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2006-08-26 13:06:15 +0000
commit73232e0b20b0d5fd95e0a8de82f5a904bfe635db (patch)
treea5448d8c537f35010236a468d1964f7d4f7bd06c
parent9c045681c57da036e541c5983b5ccdf8ce8ed486 (diff)
Make all XPM files use const char * arrays...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5369 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-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/porsche1.xpm2
-rw-r--r--test/pixmaps/red.xpm2
-rw-r--r--test/pixmaps/red_bomb.xpm2
-rw-r--r--test/pixmaps/yellow.xpm2
-rw-r--r--test/pixmaps/yellow_bomb.xpm2
16 files changed, 16 insertions, 16 deletions
diff --git a/test/pixmaps/blast.xpm b/test/pixmaps/blast.xpm
index 902e3ab24..19d0bc7b0 100644
--- a/test/pixmaps/blast.xpm
+++ b/test/pixmaps/blast.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * blast_xpm[] = {
+static const char * blast_xpm[] = {
"32 32 32 1",
" c #905518",
". c #9F580E",
diff --git a/test/pixmaps/blue.xpm b/test/pixmaps/blue.xpm
index 703ab9c82..89c412e63 100644
--- a/test/pixmaps/blue.xpm
+++ b/test/pixmaps/blue.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * blue_xpm[] = {
+static const char * 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 e9a8b3e02..72c267eca 100644
--- a/test/pixmaps/blue_bomb.xpm
+++ b/test/pixmaps/blue_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * blue_bomb_xpm[] = {
+static const char * blue_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #010047",
diff --git a/test/pixmaps/cyan.xpm b/test/pixmaps/cyan.xpm
index c00e3f437..37f74d6dd 100644
--- a/test/pixmaps/cyan.xpm
+++ b/test/pixmaps/cyan.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * cyan_xpm[] = {
+static const char * 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 d67ad8f77..4936f849c 100644
--- a/test/pixmaps/cyan_bomb.xpm
+++ b/test/pixmaps/cyan_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * cyan_bomb_xpm[] = {
+static const char * cyan_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #003A3A",
diff --git a/test/pixmaps/gray.xpm b/test/pixmaps/gray.xpm
index 924dde9f2..e5da3fc54 100644
--- a/test/pixmaps/gray.xpm
+++ b/test/pixmaps/gray.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * gray_xpm[] = {
+static const char * 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 32d440081..808c50136 100644
--- a/test/pixmaps/gray_bomb.xpm
+++ b/test/pixmaps/gray_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * gray_bomb_xpm[] = {
+static const char * gray_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #2C2E2B",
diff --git a/test/pixmaps/green.xpm b/test/pixmaps/green.xpm
index a7fe81f71..6a5889797 100644
--- a/test/pixmaps/green.xpm
+++ b/test/pixmaps/green.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * green_xpm[] = {
+static const char * 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 ac186a9cb..7e1d5e751 100644
--- a/test/pixmaps/green_bomb.xpm
+++ b/test/pixmaps/green_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * green_bomb_xpm[] = {
+static const char * green_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #003700",
diff --git a/test/pixmaps/magenta.xpm b/test/pixmaps/magenta.xpm
index e3600fc75..2405cee0c 100644
--- a/test/pixmaps/magenta.xpm
+++ b/test/pixmaps/magenta.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * magenta_xpm[] = {
+static const char * 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 9d4aee2ed..4cd1816ca 100644
--- a/test/pixmaps/magenta_bomb.xpm
+++ b/test/pixmaps/magenta_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * magenta_bomb_xpm[] = {
+static const char * magenta_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #3A033B",
diff --git a/test/pixmaps/porsche1.xpm b/test/pixmaps/porsche1.xpm
index cb53d0e4b..3a54665da 100644
--- a/test/pixmaps/porsche1.xpm
+++ b/test/pixmaps/porsche1.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * porsche[] = {
+static const char * 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 69cdddeb0..46726184d 100644
--- a/test/pixmaps/red.xpm
+++ b/test/pixmaps/red.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * red_xpm[] = {
+static const char * 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 b36f5745d..312fbd331 100644
--- a/test/pixmaps/red_bomb.xpm
+++ b/test/pixmaps/red_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * red_bomb_xpm[] = {
+static const char * red_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #340001",
diff --git a/test/pixmaps/yellow.xpm b/test/pixmaps/yellow.xpm
index 4bdd15e02..b493296a9 100644
--- a/test/pixmaps/yellow.xpm
+++ b/test/pixmaps/yellow.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * yellow_xpm[] = {
+static const char * 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 a6735b2a0..f95ee9b41 100644
--- a/test/pixmaps/yellow_bomb.xpm
+++ b/test/pixmaps/yellow_bomb.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static char * yellow_bomb_xpm[] = {
+static const char * yellow_bomb_xpm[] = {
"32 32 32 1",
" c #000100",
". c #393900",