diff options
author | Jörg Mayer <jmayer@loplof.de> | 2005-08-05 20:59:08 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2005-08-05 20:59:08 +0000 |
commit | 4e1f4b18abdec1658e835a77a9de8be87c965142 (patch) | |
tree | 0aeebf0f2c4ec7ea3813d2f0b9e10f3f77e851cd /image | |
parent | e6856b69f3ebf85a1a37cb7c7a508f2be41fb1fe (diff) | |
download | wireshark-4e1f4b18abdec1658e835a77a9de8be87c965142.tar.gz wireshark-4e1f4b18abdec1658e835a77a9de8be87c965142.tar.bz2 wireshark-4e1f4b18abdec1658e835a77a9de8be87c965142.zip |
More char -> const char warning fixes.
Removed (very few) casts that only change the warning message
but don't remove it (with gcc-4).
svn path=/trunk/; revision=15227
Diffstat (limited to 'image')
58 files changed, 58 insertions, 58 deletions
diff --git a/image/dn_arrow.xpm b/image/dn_arrow.xpm index 8f71d31e55..929f5aca68 100644 --- a/image/dn_arrow.xpm +++ b/image/dn_arrow.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char *dn_arrow[] = { +static const char *dn_arrow[] = { /* width height num_colors chars_per_pixel */ " 11 12 2 1", /* colors */ diff --git a/image/eexcl3d64.xpm b/image/eexcl3d64.xpm index 4853f90db6..2a3121a567 100644 --- a/image/eexcl3d64.xpm +++ b/image/eexcl3d64.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * eexcl3d64_xpm[] = { +static const char * eexcl3d64_xpm[] = { "64 64 1305 2", " c None", ". c #ACAFAC", diff --git a/image/eicon3d16.xpm b/image/eicon3d16.xpm index 29af14d6a0..08f366079a 100644 --- a/image/eicon3d16.xpm +++ b/image/eicon3d16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * eicon3d16_xpm[] = { +static const char * eicon3d16_xpm[] = { "16 16 195 2", " c None", ". c #C6CAC6", diff --git a/image/eicon3d32.xpm b/image/eicon3d32.xpm index 0df6d97a25..af56ef0409 100644 --- a/image/eicon3d32.xpm +++ b/image/eicon3d32.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * eicon3d32_xpm[] = { +static const char * eicon3d32_xpm[] = { "32 32 599 2", " c None", ". c #ACB0AC", diff --git a/image/eicon3d48.xpm b/image/eicon3d48.xpm index 999cf81f7f..651d4bc3bf 100644 --- a/image/eicon3d48.xpm +++ b/image/eicon3d48.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * eicon3d48_xpm[] = { +static const char * eicon3d48_xpm[] = { "48 48 1034 2", " c None", ". c #B2B5B2", diff --git a/image/icon-ethereal.xpm b/image/icon-ethereal.xpm index 2529c21fbc..772e609efe 100644 --- a/image/icon-ethereal.xpm +++ b/image/icon-ethereal.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char *icon_ethereal_xpm[] = { +static const char *icon_ethereal_xpm[] = { /* width height num_colors chars_per_pixel */ " 66 63 10 1", /* colors */ diff --git a/image/icon-excl.xpm b/image/icon-excl.xpm index dfd3ecb57b..4b68e381e6 100644 --- a/image/icon-excl.xpm +++ b/image/icon-excl.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * icon_excl_xpm[] = { +static const char * icon_excl_xpm[] = { "64 64 21 1", " c None", ". c #FFFFFF", diff --git a/image/stock_dialog_error_48.xpm b/image/stock_dialog_error_48.xpm index cd87bd0b78..89dbc8f69e 100644 --- a/image/stock_dialog_error_48.xpm +++ b/image/stock_dialog_error_48.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_dialog_error_48_xpm[] = { +static const char * stock_dialog_error_48_xpm[] = { "48 48 474 2", " c None", ". c #8B5447", diff --git a/image/stock_dialog_info_48.xpm b/image/stock_dialog_info_48.xpm index 9dbbd8591d..09dc59f1d1 100644 --- a/image/stock_dialog_info_48.xpm +++ b/image/stock_dialog_info_48.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_dialog_info_48_xpm[] = { +static const char * stock_dialog_info_48_xpm[] = { "48 48 590 2", " c None", ". c #9A9AA0", diff --git a/image/stock_dialog_question_48.xpm b/image/stock_dialog_question_48.xpm index f316196306..0f70d1977f 100644 --- a/image/stock_dialog_question_48.xpm +++ b/image/stock_dialog_question_48.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_dialog_question_48_xpm[] = { +static const char * stock_dialog_question_48_xpm[] = { "48 48 481 2", " c None", ". c #572B20", diff --git a/image/stock_dialog_warning_48.xpm b/image/stock_dialog_warning_48.xpm index 341d19872f..16b9b50b04 100644 --- a/image/stock_dialog_warning_48.xpm +++ b/image/stock_dialog_warning_48.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_dialog_warning_48_xpm[] = { +static const char * stock_dialog_warning_48_xpm[] = { "48 48 225 2", " c None", ". c #000000", diff --git a/image/toolbar/autoscroll_24.xpm b/image/toolbar/autoscroll_24.xpm index f62d9238a4..5a2272c258 100644 --- a/image/toolbar/autoscroll_24.xpm +++ b/image/toolbar/autoscroll_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * autoscroll_24_xpm[] = { +static const char * autoscroll_24_xpm[] = { "24 24 71 1", " c None", ". c #000000", diff --git a/image/toolbar/capture_filter_24.xpm b/image/toolbar/capture_filter_24.xpm index e0d0a7b30e..30a183c897 100644 --- a/image/toolbar/capture_filter_24.xpm +++ b/image/toolbar/capture_filter_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * capture_filter_24_xpm[] = { +static const char * capture_filter_24_xpm[] = { "24 24 305 2", " c None", ". c #000000", diff --git a/image/toolbar/capture_interfaces_24.xpm b/image/toolbar/capture_interfaces_24.xpm index 5c19c437fd..f92967c853 100644 --- a/image/toolbar/capture_interfaces_24.xpm +++ b/image/toolbar/capture_interfaces_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * capture_interfaces_24_xpm[] = { +static const char * capture_interfaces_24_xpm[] = { "24 24 219 2", " c None", ". c #000000", diff --git a/image/toolbar/capture_options_24.xpm b/image/toolbar/capture_options_24.xpm index 1823101edc..353ef87002 100644 --- a/image/toolbar/capture_options_24.xpm +++ b/image/toolbar/capture_options_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * capture_options_24_xpm[] = { +static const char * capture_options_24_xpm[] = { "24 24 261 2", " c None", ". c #000000", diff --git a/image/toolbar/capture_restart_24.xpm b/image/toolbar/capture_restart_24.xpm index 8b24e7d8e3..099f1f86e5 100644 --- a/image/toolbar/capture_restart_24.xpm +++ b/image/toolbar/capture_restart_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * capture_restart_24_xpm[] = { +static const char * capture_restart_24_xpm[] = { "24 24 270 2", " c None", ". c #000000", diff --git a/image/toolbar/capture_start_24.xpm b/image/toolbar/capture_start_24.xpm index b511cdb6f5..2126d9f51a 100644 --- a/image/toolbar/capture_start_24.xpm +++ b/image/toolbar/capture_start_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * capture_start_24_xpm[] = { +static const char * capture_start_24_xpm[] = { "24 24 241 2", " c None", ". c #000000", diff --git a/image/toolbar/capture_stop_24.xpm b/image/toolbar/capture_stop_24.xpm index e33bf5739f..e3f8f1f5c9 100644 --- a/image/toolbar/capture_stop_24.xpm +++ b/image/toolbar/capture_stop_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * capture_stop_24_xpm[] = { +static const char * capture_stop_24_xpm[] = { "24 24 337 2", " c None", ". c #000000", diff --git a/image/toolbar/checkbox_16.xpm b/image/toolbar/checkbox_16.xpm index c9805097b9..66e8047a05 100644 --- a/image/toolbar/checkbox_16.xpm +++ b/image/toolbar/checkbox_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * checkbox_16_xpm[] = { +static const char * checkbox_16_xpm[] = { "16 16 25 1", " c None", ". c #9D9D9D", diff --git a/image/toolbar/colorize_24.xpm b/image/toolbar/colorize_24.xpm index 5da8971c45..fcb20c4b6e 100644 --- a/image/toolbar/colorize_24.xpm +++ b/image/toolbar/colorize_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * colorize_24_xpm[] = { +static const char * colorize_24_xpm[] = { "24 24 57 1", " c None", ". c #000000", diff --git a/image/toolbar/conversations_16.xpm b/image/toolbar/conversations_16.xpm index 933d2bb032..194ffd420c 100644 --- a/image/toolbar/conversations_16.xpm +++ b/image/toolbar/conversations_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * conversations_16_xpm[] = { +static const char * conversations_16_xpm[] = { "16 16 51 1", " c None", ". c #191918", diff --git a/image/toolbar/decode_as_16.xpm b/image/toolbar/decode_as_16.xpm index b045610c0c..6d704bf4e8 100644 --- a/image/toolbar/decode_as_16.xpm +++ b/image/toolbar/decode_as_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * decode_as_16_xpm[] = { +static const char * decode_as_16_xpm[] = { "16 16 6 1", " c None", ". c #000000", diff --git a/image/toolbar/display_filter_24.xpm b/image/toolbar/display_filter_24.xpm index c782ae0154..766ca62a9d 100644 --- a/image/toolbar/display_filter_24.xpm +++ b/image/toolbar/display_filter_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * display_filter_24_xpm[] = { +static const char * display_filter_24_xpm[] = { "24 24 110 2", " c None", ". c #000000", diff --git a/image/toolbar/endpoints_16.xpm b/image/toolbar/endpoints_16.xpm index 16cb287224..c0b39de6ba 100644 --- a/image/toolbar/endpoints_16.xpm +++ b/image/toolbar/endpoints_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * endpoints_16_xpm[] = { +static const char * endpoints_16_xpm[] = { "16 16 49 1", " c None", ". c #79797C", diff --git a/image/toolbar/file_set_list_16.xpm b/image/toolbar/file_set_list_16.xpm index d9faea30ff..383c061481 100644 --- a/image/toolbar/file_set_list_16.xpm +++ b/image/toolbar/file_set_list_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * file_set_list_16_xpm[] = { +static const char * file_set_list_16_xpm[] = { "16 16 37 1", " c None", ". c #000000", diff --git a/image/toolbar/file_set_next_16.xpm b/image/toolbar/file_set_next_16.xpm index 90dfdcb97a..4a06c1420a 100644 --- a/image/toolbar/file_set_next_16.xpm +++ b/image/toolbar/file_set_next_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * file_set_next_16_xpm[] = { +static const char * file_set_next_16_xpm[] = { "16 16 42 1", " c None", ". c #000000", diff --git a/image/toolbar/file_set_previous_16.xpm b/image/toolbar/file_set_previous_16.xpm index 6a65c41343..0e09a8706b 100644 --- a/image/toolbar/file_set_previous_16.xpm +++ b/image/toolbar/file_set_previous_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * file_set_previous_16_xpm[] = { +static const char * file_set_previous_16_xpm[] = { "16 16 42 1", " c None", ". c #000000", diff --git a/image/toolbar/graphs_16.xpm b/image/toolbar/graphs_16.xpm index ad8b0e2b09..7b4c5392ce 100644 --- a/image/toolbar/graphs_16.xpm +++ b/image/toolbar/graphs_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * graphs_16_xpm[] = { +static const char * graphs_16_xpm[] = { "16 16 4 1", " c None", ". c #000000", diff --git a/image/toolbar/internet_24.xpm b/image/toolbar/internet_24.xpm index 3860c563b3..3c78d380ce 100644 --- a/image/toolbar/internet_24.xpm +++ b/image/toolbar/internet_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * internet_24_xpm[] = { +static const char * internet_24_xpm[] = { "24 24 310 2", " c None", ". c #2D373E", diff --git a/image/toolbar/resize_columns_24.xpm b/image/toolbar/resize_columns_24.xpm index 5aee2d6ade..f917c0f70c 100644 --- a/image/toolbar/resize_columns_24.xpm +++ b/image/toolbar/resize_columns_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * resize_columns_24_xpm[] = { +static const char * resize_columns_24_xpm[] = { "24 24 24 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_add_24.xpm b/image/toolbar/stock_add_24.xpm index 9aef1ef64c..3f1981c939 100644 --- a/image/toolbar/stock_add_24.xpm +++ b/image/toolbar/stock_add_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_add_24_xpm[] = { +static const char * stock_add_24_xpm[] = { "24 24 24 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_bottom_24.xpm b/image/toolbar/stock_bottom_24.xpm index 13eb555648..28c0a8e015 100644 --- a/image/toolbar/stock_bottom_24.xpm +++ b/image/toolbar/stock_bottom_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_bottom_24_xpm[] = { +static const char * stock_bottom_24_xpm[] = { "24 24 49 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_clear_24.xpm b/image/toolbar/stock_clear_24.xpm index b05c766a04..9adcc03407 100644 --- a/image/toolbar/stock_clear_24.xpm +++ b/image/toolbar/stock_clear_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_clear_24_xpm[] = { +static const char * stock_clear_24_xpm[] = { "24 24 56 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_close_24.xpm b/image/toolbar/stock_close_24.xpm index 032cd950b3..98699d5542 100644 --- a/image/toolbar/stock_close_24.xpm +++ b/image/toolbar/stock_close_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_close_24_xpm[] = { +static const char * stock_close_24_xpm[] = { "24 24 2 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_colorselector_24.xpm b/image/toolbar/stock_colorselector_24.xpm index 4990f7d4bb..ef944251ad 100644 --- a/image/toolbar/stock_colorselector_24.xpm +++ b/image/toolbar/stock_colorselector_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_colorselector_24_xpm[] = { +static const char * stock_colorselector_24_xpm[] = { "24 24 223 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_help_24.xpm b/image/toolbar/stock_help_24.xpm index e2e13ff89c..0f4e210ff7 100644 --- a/image/toolbar/stock_help_24.xpm +++ b/image/toolbar/stock_help_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_help_24_xpm[] = { +static const char * stock_help_24_xpm[] = { "24 24 244 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_jump_to_24.xpm b/image/toolbar/stock_jump_to_24.xpm index d77c01d7da..02702df761 100644 --- a/image/toolbar/stock_jump_to_24.xpm +++ b/image/toolbar/stock_jump_to_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_jump_to_24_xpm[] = { +static const char * stock_jump_to_24_xpm[] = { "24 24 144 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_left_arrow_24.xpm b/image/toolbar/stock_left_arrow_24.xpm index 369da1c0fe..01d2daf997 100644 --- a/image/toolbar/stock_left_arrow_24.xpm +++ b/image/toolbar/stock_left_arrow_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_left_arrow_24_xpm[] = { +static const char * stock_left_arrow_24_xpm[] = { "24 24 43 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_ok_20.xpm b/image/toolbar/stock_ok_20.xpm index 6771609f76..6e23c22e0f 100644 --- a/image/toolbar/stock_ok_20.xpm +++ b/image/toolbar/stock_ok_20.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_ok_20_xpm[] = { +static const char * stock_ok_20_xpm[] = { "20 20 47 1", " c None", ". c #10120F", diff --git a/image/toolbar/stock_open_24.xpm b/image/toolbar/stock_open_24.xpm index 70786ebe3c..2204c247b5 100644 --- a/image/toolbar/stock_open_24.xpm +++ b/image/toolbar/stock_open_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_open_24_xpm[] = { +static const char * stock_open_24_xpm[] = { "24 24 173 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_preferences_24.xpm b/image/toolbar/stock_preferences_24.xpm index 376ca79266..cc93ad35a8 100644 --- a/image/toolbar/stock_preferences_24.xpm +++ b/image/toolbar/stock_preferences_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_preferences_24_xpm[] = { +static const char * stock_preferences_24_xpm[] = { "24 24 87 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_print_24.xpm b/image/toolbar/stock_print_24.xpm index 5e2254f20d..b24a568a46 100644 --- a/image/toolbar/stock_print_24.xpm +++ b/image/toolbar/stock_print_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_print_24_xpm[] = { +static const char * stock_print_24_xpm[] = { "24 24 175 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_properties_24.xpm b/image/toolbar/stock_properties_24.xpm index a2d9cb6c24..8555658ed2 100644 --- a/image/toolbar/stock_properties_24.xpm +++ b/image/toolbar/stock_properties_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_properties_24_xpm[] = { +static const char * stock_properties_24_xpm[] = { "24 24 185 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_refresh_24.xpm b/image/toolbar/stock_refresh_24.xpm index 88a457d09d..72f180cc38 100644 --- a/image/toolbar/stock_refresh_24.xpm +++ b/image/toolbar/stock_refresh_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_refresh_24_xpm[] = { +static const char * stock_refresh_24_xpm[] = { "24 24 126 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_right_arrow_24.xpm b/image/toolbar/stock_right_arrow_24.xpm index dfac57b979..28c7336537 100644 --- a/image/toolbar/stock_right_arrow_24.xpm +++ b/image/toolbar/stock_right_arrow_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_right_arrow_24_xpm[] = { +static const char * stock_right_arrow_24_xpm[] = { "24 24 41 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_save_24.xpm b/image/toolbar/stock_save_24.xpm index 3c2a50795f..9e6ceb8cfe 100644 --- a/image/toolbar/stock_save_24.xpm +++ b/image/toolbar/stock_save_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_save_24_xpm[] = { +static const char * stock_save_24_xpm[] = { "24 24 220 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_save_as_24.xpm b/image/toolbar/stock_save_as_24.xpm index e94f449512..a6620fd19b 100644 --- a/image/toolbar/stock_save_as_24.xpm +++ b/image/toolbar/stock_save_as_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_save_as_24_xpm[] = { +static const char * stock_save_as_24_xpm[] = { "24 24 262 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_search_24.xpm b/image/toolbar/stock_search_24.xpm index 59614e86bd..a87cefebf0 100644 --- a/image/toolbar/stock_search_24.xpm +++ b/image/toolbar/stock_search_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_search_24_xpm[] = { +static const char * stock_search_24_xpm[] = { "24 24 207 2", " c None", ". c #000000", diff --git a/image/toolbar/stock_stop_24.xpm b/image/toolbar/stock_stop_24.xpm index d5d51eecd8..f2dc8294be 100644 --- a/image/toolbar/stock_stop_24.xpm +++ b/image/toolbar/stock_stop_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_stop_24_xpm[] = { +static const char * stock_stop_24_xpm[] = { "24 24 258 2", " c None", ". c #010000", diff --git a/image/toolbar/stock_top_24.xpm b/image/toolbar/stock_top_24.xpm index 3c1c687f31..3cc7a3613b 100644 --- a/image/toolbar/stock_top_24.xpm +++ b/image/toolbar/stock_top_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_top_24_xpm[] = { +static const char * stock_top_24_xpm[] = { "24 24 51 1", " c None", ". c #000000", diff --git a/image/toolbar/stock_zoom_1_24.xpm b/image/toolbar/stock_zoom_1_24.xpm index 9bd5c6657b..f4675dcb18 100644 --- a/image/toolbar/stock_zoom_1_24.xpm +++ b/image/toolbar/stock_zoom_1_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_zoom_1_24_xpm[] = { +static const char * stock_zoom_1_24_xpm[] = { "24 24 136 2", " c None", ". c #343434", diff --git a/image/toolbar/stock_zoom_in_24.xpm b/image/toolbar/stock_zoom_in_24.xpm index cb62c924a3..a6f2114242 100644 --- a/image/toolbar/stock_zoom_in_24.xpm +++ b/image/toolbar/stock_zoom_in_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_zoom_in_24_xpm[] = { +static const char * stock_zoom_in_24_xpm[] = { "24 24 132 2", " c None", ". c #343434", diff --git a/image/toolbar/stock_zoom_out_24.xpm b/image/toolbar/stock_zoom_out_24.xpm index c3bc8069d5..c03b0df759 100644 --- a/image/toolbar/stock_zoom_out_24.xpm +++ b/image/toolbar/stock_zoom_out_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * stock_zoom_out_24_xpm[] = { +static const char * stock_zoom_out_24_xpm[] = { "24 24 131 2", " c None", ". c #343434", diff --git a/image/toolbar/telephony_16.xpm b/image/toolbar/telephony_16.xpm index 246e492028..a2fb5bb1ef 100644 --- a/image/toolbar/telephony_16.xpm +++ b/image/toolbar/telephony_16.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * telephony_16_xpm[] = { +static const char * telephony_16_xpm[] = { "16 16 87 1", " c None", ". c #000000", diff --git a/image/toolbar/time_24.xpm b/image/toolbar/time_24.xpm index ada7a6a62d..97eb497f7d 100644 --- a/image/toolbar/time_24.xpm +++ b/image/toolbar/time_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * time_24_xpm[] = { +static const char * time_24_xpm[] = { "24 24 92 2", " c None", ". c #000000", diff --git a/image/toolbar/web_support_24.xpm b/image/toolbar/web_support_24.xpm index 43e76a949e..17f60585de 100644 --- a/image/toolbar/web_support_24.xpm +++ b/image/toolbar/web_support_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * web_support_24_xpm[] = { +static const char * web_support_24_xpm[] = { "24 24 383 2", " c None", ". c #010101", diff --git a/image/toolbar/wiki_24.xpm b/image/toolbar/wiki_24.xpm index 618c4e7078..7299ebdcb7 100644 --- a/image/toolbar/wiki_24.xpm +++ b/image/toolbar/wiki_24.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * wiki_24_xpm[] = { +static const char * wiki_24_xpm[] = { "24 24 305 2", " c None", ". c #2D373E", diff --git a/image/up_arrow.xpm b/image/up_arrow.xpm index a33294ca5d..11c80ae448 100644 --- a/image/up_arrow.xpm +++ b/image/up_arrow.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char *up_arrow[] = { +static const char *up_arrow[] = { /* width height num_colors chars_per_pixel */ " 11 12 2 1", /* colors */ |