1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-23 17:11:13 +01:00

Fix most of the compile warnings I get on Linux (but not the Audacity Logo

xpm stuff or a few things in FFMPEG export)
This commit is contained in:
businessmanprogrammersteve
2010-02-12 21:36:20 +00:00
parent e801b39943
commit a55c20be66
27 changed files with 54 additions and 72 deletions

View File

@@ -22,7 +22,7 @@
class AUDACITY_DLL_API FileHistory
{
public:
FileHistory(int maxfiles = 9, wxWindowID idbase = wxID_FILE);
FileHistory(size_t maxfiles = 9, wxWindowID idbase = wxID_FILE);
virtual ~FileHistory();
void AddFileToHistory(const wxString & file, bool update = true);
@@ -40,7 +40,7 @@ class AUDACITY_DLL_API FileHistory
wxString GetHistoryFile(size_t i) const;
private:
int mMaxFiles;
size_t mMaxFiles;
wxWindowID mIDBase;
wxArrayPtrVoid mMenus;