summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorDrew Vogel <dvogel@github>2024-05-23 17:49:39 +0200
committerChristian Brabandt <cb@256bit.org>2024-05-23 17:49:39 +0200
commit742062f31faca14ae479f4688a5ad8add5d5c120 (patch)
tree12f59f632314bb7f49ede81998b16b4a8a793b86 /runtime
parent789679cfc4f39505b135220672b43a260d8ca3b4 (diff)
patch 9.1.0437: Motif requires non-const char pointer for XPM datav9.1.0437
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>
Diffstat (limited to 'runtime')
-rw-r--r--runtime/vim16x16.xpm2
-rw-r--r--runtime/vim32x32.xpm2
-rw-r--r--runtime/vim48x48.xpm2
3 files changed, 3 insertions, 3 deletions
diff --git a/runtime/vim16x16.xpm b/runtime/vim16x16.xpm
index 9b55218cc0..cb75b71781 100644
--- a/runtime/vim16x16.xpm
+++ b/runtime/vim16x16.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * vim16x16[] = {
+static char * vim16x16[] = {
"16 16 8 1",
" c None",
". c #000000",
diff --git a/runtime/vim32x32.xpm b/runtime/vim32x32.xpm
index 017b93b6f8..43a3a40c0b 100644
--- a/runtime/vim32x32.xpm
+++ b/runtime/vim32x32.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * vim32x32[] = {
+static char * vim32x32[] = {
"32 32 8 1",
" c None",
". c #000000",
diff --git a/runtime/vim48x48.xpm b/runtime/vim48x48.xpm
index 8bd08bc5a3..b2fdd95924 100644
--- a/runtime/vim48x48.xpm
+++ b/runtime/vim48x48.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * vim48x48[] = {
+static char * vim48x48[] = {
"48 48 8 1",
" c None",
". c #000000",