make XPM data const to avoid warnings from mingw 4.0 (patch 1874995)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@51519 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-02-03 13:48:11 +00:00
parent 285900728d
commit 807eac818a
320 changed files with 320 additions and 323 deletions

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *alignb_xpm[] = {
static const char * alignb_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *alignl_xpm[] = {
static const char * alignl_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *alignr_xpm[] = {
static const char * alignr_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *alignt_xpm[] = {
static const char * alignt_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *arrow_xpm[] = {
static const char * arrow_xpm[] = {
/* width height num_colors chars_per_pixel */
" 22 22 2 1",
/* colors */

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *copy_xpm[] = {
static const char * copy_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 23 1",
"+ c #769CDA",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *copysize_xpm[] = {
static const char * copysize_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *cut_xpm[] = {
static const char * cut_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 25 1",
"6 c #D8BDC0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *cutpoint_xpm[] = {
static const char * cutpoint_xpm[] = {
/* width height num_colors chars_per_pixel */
" 16 15 3 1",
/* colors */

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *help_xpm[] = {
static const char * help_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 50 1",
"j c #4E7FD0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *helpcs_xpm[] = {
static const char * helpcs_xpm[] = {
/* width height num_colors chars_per_pixel */
" 16 15 2 1",
/* colors */

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *horiz_xpm[] = {
static const char * horiz_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *linearrow_xpm[] = {
static const char * linearrow_xpm[] = {
/* width height num_colors chars_per_pixel */
" 16 15 3 1",
/* colors */

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *new_xpm[] = {
static const char * new_xpm[] = {
/* columns rows colors chars-per-pixel */
"15 15 31 1",
". c #7198D9",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *newpoint_xpm[] = {
static const char * newpoint_xpm[] = {
/* width height num_colors chars_per_pixel */
" 16 15 3 1",
/* colors */

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *open_xpm[] = {
static const char * open_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 36 1",
", c #AAC1E8",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *paste_xpm[] = {
static const char * paste_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 25 1",
"< c #FEECE4",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *preview_xpm[] = {
static const char * preview_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 30 1",
"1 c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *print_xpm[] = {
static const char * print_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 35 1",
"y c #EDF2FB",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *redo_xpm[] = {
static const char * redo_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 37 1",
"2 c #4E7FD0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *save_xpm[] = {
static const char * save_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 21 1",
": c #AAC1E8",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *straight_xpm[] = {
static const char * straight_xpm[] = {
/* width height num_colors chars_per_pixel */
" 16 15 2 1",
/* colors */

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *texttool_xpm[] = {
static const char * texttool_xpm[] = {
/* width height num_colors chars_per_pixel */
" 22 22 2 1",
/* colors */

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *undo_xpm[] = {
static const char * undo_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 37 1",
"4 c #4E7FD0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *vert_xpm[] = {
static const char * vert_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
" c None",