diff options
| author | Pierre Ossman <ossman@cendio.se> | 2014-06-16 13:58:42 +0000 |
|---|---|---|
| committer | Pierre Ossman <ossman@cendio.se> | 2014-06-16 13:58:42 +0000 |
| commit | 776fd2a107667cac6cf490f39047a7eeadace309 (patch) | |
| tree | 954686534e4f1ccfb64238e3d6e730f9cd54229f | |
| parent | f58b1a91b37e5ad758b3d0a3d9be950e8feb5d0c (diff) | |
Make sure the XPM files define const char arrays to avoid
compiler warnings.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10198 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/fl_cursor_help.xpm | 2 | ||||
| -rw-r--r-- | src/fl_cursor_wait.xpm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/fl_cursor_help.xpm b/src/fl_cursor_help.xpm index d9d8be0fd..972c82fb6 100644 --- a/src/fl_cursor_help.xpm +++ b/src/fl_cursor_help.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * fl_cursor_help_xpm[] = { +static const char * fl_cursor_help_xpm[] = { "16 27 9 1", " c None", ". c #FFFFFF", diff --git a/src/fl_cursor_wait.xpm b/src/fl_cursor_wait.xpm index 3fb2ce32a..4f91c5d8e 100644 --- a/src/fl_cursor_wait.xpm +++ b/src/fl_cursor_wait.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * fl_cursor_wait_xpm[] = { +static const char * fl_cursor_wait_xpm[] = { "17 32 11 1", " c None", ". c #FFFFFF", |
