Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
Fixed non-constant XPM images
Browse files Browse the repository at this point in the history
*facepalm* This was a simple thing. Next time, I'm going to try to look
at this next time I modify an XPM file.
  • Loading branch information
generic-pers0n committed Aug 24, 2021
1 parent b12cc7d commit dcd0a68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion images/AudacityLogo.xpm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* XPM */
static char * AudacityLogo_xpm[] = {
static const char* const AudacityLogo_xpm[] = {
"215 190 155 2",
" c #FFFFFF",
". c #F5F5F5",
Expand Down
2 changes: 1 addition & 1 deletion images/AudacityLogo48x48.xpm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* XPM */
static char * AudacityLogo48x48_xpm[] = {
static const char* const AudacityLogo48x48_xpm[] = {
"48 48 80 1",
" c #FFFFFF",
". c #FEFEFE",
Expand Down
2 changes: 1 addition & 1 deletion images/AudacityLogoWithName.xpm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* XPM */
static char * AudacityLogoWithName_xpm[] = {
static const char* const AudacityLogoWithName_xpm[] = {
"506 200 183 2",
" c #FFFFFF",
". c #D8D8D8",
Expand Down

0 comments on commit dcd0a68

Please sign in to comment.