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

Fixed missing include <listctrl.h> and fixed warning on LabelArray from DLL exporting.

This commit is contained in:
james.k.crook@gmail.com 2013-08-24 22:16:47 +00:00
parent 435f3751c3
commit 53032f04f8
2 changed files with 3 additions and 1 deletions

View File

@ -86,7 +86,8 @@ public:
bool updated; /// flag to tell if the label times were updated bool updated; /// flag to tell if the label times were updated
}; };
AUDACITY_DLL_API WX_DEFINE_ARRAY(LabelStruct *, LabelArray); //AUDACITY_DLL_API WX_DEFINE_ARRAY(LabelStruct *, LabelArray);
WX_DEFINE_USER_EXPORTED_ARRAY(LabelStruct *, LabelArray, class AUDACITY_DLL_API);
const int NUM_GLYPH_CONFIGS = 3; const int NUM_GLYPH_CONFIGS = 3;
const int NUM_GLYPH_HIGHLIGHTS = 4; const int NUM_GLYPH_HIGHLIGHTS = 4;

View File

@ -34,6 +34,7 @@
#include <wx/utils.h> #include <wx/utils.h>
#include <wx/dcclient.h> #include <wx/dcclient.h>
#include <wx/imaglist.h> #include <wx/imaglist.h>
#include <wx/listctrl.h>
#if defined(__WXMAC__) #if defined(__WXMAC__)
#include <dlfcn.h> #include <dlfcn.h>