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 *addbookm_xpm[] = {
static const char * addbookm_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 3 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * back_xpm[] = {
static const char * back_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

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

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",
"o c #97C4E7",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *cross_xpm[] = {
static const char * cross_xpm[] = {
/* columns rows colors chars-per-pixel */
"10 10 2 1",
" c Gray0",

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 *deffile_xpm[] = {
static const char * deffile_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 32 1",
"= c #97C4E7",

View File

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

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * down_xpm[] = {
static const char * down_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *exefile_xpm[] = {
static const char * exefile_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 51 1",
"% c #E8E8EC",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *floppy_xpm[] = {
static const char * floppy_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 18 1",
"& c #E3E4E6",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *folder_xpm[] = {
static const char * folder_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 22 1",
"> c #9BACC2",

View File

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

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * forward_xpm[] = {
static const char * forward_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *error_xpm[] = {
static const char * error_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 4 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *info_xpm[] = {
static const char * info_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"$ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *question_xpm[] = {
static const char * question_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 21 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *warning_xpm[] = {
static const char * warning_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"@ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *harddisk_xpm[] = {
static const char * harddisk_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 39 1",
"7 c #E3E4E6",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *helpicon_xpm[] = {
static const char * helpicon_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Gray0",

View File

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

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * htmbook_xpm[] = {
static const char * htmbook_xpm[] = {
"16 16 6 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * htmfoldr_xpm[] = {
static const char * htmfoldr_xpm[] = {
"16 16 6 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * htmoptns_xpm[] = {
static const char * htmoptns_xpm[] = {
"16 15 2 1",
" c None",
". c #000000",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * htmpage_xpm[] = {
static const char * htmpage_xpm[] = {
"16 16 4 1",
" c None",
". c #808080",

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *missimg_xpm[] = {
static const char * missimg_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 5 1",
"X c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *error_xpm[] = {
static const char * error_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 4 1",
" c None",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *info_xpm[] = {
static const char * info_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"$ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *question_xpm[] = {
static const char * question_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 21 1",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *warning_xpm[] = {
static const char * warning_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"@ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *new_xpm[] = {
static const char * new_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 29 1",
"* c #97C4E7",

View File

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

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 *print_xpm[] = {
static const char * print_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 15 39 1",
"< c #E3E4E6",

View File

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

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",
"4 c #9BACC2",

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *tick_xpm[] = {
static const char * tick_xpm[] = {
/* columns rows colors chars-per-pixel */
"10 10 2 1",
". c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *tipicon_xpm[] = {
static const char * tipicon_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 9 1",
"$ c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * toparent_xpm[] = {
static const char * toparent_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

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 #9BACC2",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * up_xpm[] = {
static const char * up_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *wxwin16x16_xpm[] = {
static const char * wxwin16x16_xpm[] = {
"16 16 6 1",
" c None",
". c #000000",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *wxwin32x32_xpm[] = {
static const char * wxwin32x32_xpm[] = {
"32 32 6 1",
" c None",
". c #000000",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *plot_dwn_xpm[] = {
static const char * plot_dwn_xpm[] = {
/* columns rows colors chars-per-pixel */
"20 18 8 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *plot_enl_xpm[] = {
static const char * plot_enl_xpm[] = {
/* columns rows colors chars-per-pixel */
"20 20 8 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *plot_shr_xpm[] = {
static const char * plot_shr_xpm[] = {
/* columns rows colors chars-per-pixel */
"20 20 8 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *plot_up_xpm[] = {
static const char * plot_up_xpm[] = {
/* columns rows colors chars-per-pixel */
"20 18 8 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *plot_zin_xpm[] = {
static const char * plot_zin_xpm[] = {
/* columns rows colors chars-per-pixel */
"20 18 8 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *plot_zot_xpm[] = {
static const char * plot_zot_xpm[] = {
/* columns rows colors chars-per-pixel */
"20 18 8 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *mondrian_xpm[] = {
static const char * mondrian_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * eject_xpm[] = {
static const char * eject_xpm[] = {
"15 16 5 1",
" c None",
". c #949594",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *mondrian_xpm[] = {
static const char * mondrian_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * pause_xpm[] = {
static const char * pause_xpm[] = {
"13 15 5 1",
" c None",
". c #949594",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * play_back_xpm[] = {
static const char * play_back_xpm[] = {
"13 15 5 1",
" c None",
". c #949594",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char * stop_back_xpm[] = {
static const char * stop_back_xpm[] = {
"13 15 5 1",
" c None",
". c #949594",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *arrow_xpm[] = {
static const char * arrow_xpm[] = {
/* columns rows colors chars-per-pixel */
"22 22 16 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *tool1_xpm[] = {
static const char * tool1_xpm[] = {
/* columns rows colors chars-per-pixel */
"22 22 16 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *tool2_xpm[] = {
static const char * tool2_xpm[] = {
/* columns rows colors chars-per-pixel */
"22 22 16 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *tool3_xpm[] = {
static const char * tool3_xpm[] = {
/* columns rows colors chars-per-pixel */
"22 22 16 1",
" c Gray0",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *tool4_xpm[] = {
static const char * tool4_xpm[] = {
/* columns rows colors chars-per-pixel */
"22 22 16 1",
" c Gray0",

View File

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

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",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *studio_xpm[] = {
static const char * studio_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *mondrian_xpm[] = {
static const char * mondrian_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Black",

View File

@@ -1,5 +1,5 @@
/* XPM */
static char *svgbitmap_xpm[] = {
static const char * svgbitmap_xpm[] = {
/* columns rows colors chars-per-pixel */
"64 48 256 2",
" c #550000",

Some files were not shown because too many files have changed in this diff Show More