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

Fixes bug #64 and increase the default number of history items remembered by the FileHistory class to 12 from 9.

This commit is contained in:
lllucius
2011-03-11 15:23:35 +00:00
parent 36fe24cdd8
commit 650c1b69d3
2 changed files with 81 additions and 12 deletions

View File

@@ -22,7 +22,7 @@
class AUDACITY_DLL_API FileHistory
{
public:
FileHistory(size_t maxfiles = 9, wxWindowID idbase = wxID_FILE);
FileHistory(size_t maxfiles = 12, wxWindowID idbase = wxID_FILE);
virtual ~FileHistory();
void AddFileToHistory(const wxString & file, bool update = true);