mirror of
https://github.com/vim/vim
synced 2025-03-15 06:17:51 +01:00
Problem: Motif requires non-const char pointer for XPM data shared with GTK (Tony Mechelynck, after v9.1.0432) Solution: Cast non-const to const char pointer for GTK (Drew Vogel). closes: #14834 Signed-off-by: Drew Vogel <dvogel@github> Signed-off-by: Christian Brabandt <cb@256bit.org>
27 lines
490 B
C
27 lines
490 B
C
/* XPM */
|
|
static char * vim16x16[] = {
|
|
"16 16 8 1",
|
|
" c None",
|
|
". c #000000",
|
|
"+ c #000080",
|
|
"@ c #008000",
|
|
"# c #00FF00",
|
|
"$ c #808080",
|
|
"% c #C0C0C0",
|
|
"& c #FFFFFF",
|
|
" .....#. .... ",
|
|
" .&&&&&.@.&&&&. ",
|
|
" .%%%%%$..%%%%$.",
|
|
" .%%%$.@.&%%$. ",
|
|
" .%%%$..&%%$. ",
|
|
" .%%%$.&%%$.. ",
|
|
" #.%%%$&%%$.@@. ",
|
|
"#@.%%%&%%$.@@@@.",
|
|
".@.%%%%%..@@@@+ ",
|
|
" ..%%%%.%...@. ",
|
|
" .%%%%...%%.%. ",
|
|
" .%%%.%%.%%%%%.",
|
|
" .%%$..%.%.%.%.",
|
|
" .%$.@.%.%.%.%.",
|
|
" .. .%%.%.%.%.",
|
|
" .. . . . "};
|