1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-18 17:10:05 +02:00

LightTheme fix, but without the const.

To narrow down the Mac 'wrong library invoked' bug.
This commit is contained in:
James Crook 2017-07-26 15:37:02 +01:00
parent 08795f6843
commit 00f865860e
2 changed files with 2561 additions and 2581 deletions

File diff suppressed because it is too large Load Diff

View File

@ -192,16 +192,16 @@ WX_DEFINE_USER_EXPORTED_OBJARRAY( ArrayOfColours )
// Include the ImageCache...
static const unsigned char DarkImageCacheAsData[] = {
static unsigned char DarkImageCacheAsData[] = {
#include "DarkThemeAsCeeCode.h"
};
static const unsigned char LightImageCacheAsData[] = {
static unsigned char LightImageCacheAsData[] = {
#include "LightThemeAsCeeCode.h"
};
static const unsigned char ClassicImageCacheAsData[] = {
static unsigned char ClassicImageCacheAsData[] = {
#include "ClassicThemeAsCeeCode.h"
};
static const unsigned char HiContrastImageCacheAsData[] = {
static unsigned char HiContrastImageCacheAsData[] = {
#include "HiContrastThemeAsCeeCode.h"
};