made all XPM const to avoid warnings from mingw32 4.0 and adopt the code accordingly (patch 1872384)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-01-16 01:39:44 +00:00
parent 43cdc80617
commit 747d7d7c15
242 changed files with 13118 additions and 13124 deletions

View File

@ -1,5 +1,5 @@
/* XPM */
static char *addbookm_xpm[] = {
static const char *const 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 *const back_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@ -1,5 +1,5 @@
/* XPM */
static char *cdrom_xpm[] = {
static const char *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const down_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@ -1,5 +1,5 @@
/* XPM */
static char *exefile_xpm[] = {
static const char *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const forward_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@ -1,5 +1,5 @@
/* XPM */
static char *error_xpm[] = {
static const char *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const htmbook_xpm[] = {
"16 16 6 1",
" c None",
". c Black",

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/* XPM */
static char *htmsidep_xpm[] = {
static const char *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const 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 *const toparent_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

@ -1,5 +1,5 @@
/* XPM */
static char *undo_xpm[] = {
static const char *const 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 *const up_xpm[] = {
"16 15 3 1",
" c None",
". c Black",

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/* XPM */
static char *Pictures[] = {
static const char *const Pictures[] = {
/* width height num_colors chars_per_pixel */
" 120 45 8 1",
/* colors */

View File

@ -1,5 +1,5 @@
/* XPM */
static char *symbols_xpm[] = {
static const char *const symbols_xpm[] = {
/* width height num_colors chars_per_pixel */
" 117 70 16 1",
/* colors */

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/* XPM */
static char * life_xpm[] = {
static const char *const life_xpm[] = {
"151 73 5 1",
" c None",
". c #808080",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/* XPM */
static char *error_xpm[] = {
static const char *const 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 *const info_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"$ c Black",

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/* XPM */
static char *question_xpm[] = {
static const char *const 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 *const warning_xpm[] = {
/* columns rows colors chars-per-pixel */
"48 48 9 1",
"@ c Black",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/* XPM */
static char *dragicon_xpm[] = {
static const char *const dragicon_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 *const mondrian_xpm[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Black",

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