patch 9.1.0437: Motif requires non-const char pointer for XPM data

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>
This commit is contained in:
Drew Vogel
2024-05-23 17:49:39 +02:00
committed by Christian Brabandt
parent 789679cfc4
commit 742062f31f
5 changed files with 8 additions and 6 deletions

View File

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