mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 06:03:49 +01:00
Performance improvements
This commit is contained in:
@@ -201,7 +201,7 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
|
||||
*/
|
||||
static wxArrayString ShowOpenDialog(wxString extraformat = wxEmptyString,
|
||||
wxString extrafilter = wxEmptyString);
|
||||
static bool IsAlreadyOpen(const wxString projPathName);
|
||||
static bool IsAlreadyOpen(const wxString & projPathName);
|
||||
static void OpenFiles(AudacityProject *proj);
|
||||
void OpenFile(wxString fileName, bool addtohistory = true);
|
||||
bool WarnOfLegacyFile( );
|
||||
@@ -215,9 +215,9 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
|
||||
void UnlockAllBlocks();
|
||||
bool Save(bool overwrite = true, bool fromSaveAs = false, bool bWantSaveCompressed = false);
|
||||
bool SaveAs(bool bWantSaveCompressed = false);
|
||||
bool SaveAs(const wxString newFileName, bool bWantSaveCompressed = false, bool addToHistory = true);
|
||||
bool SaveAs(const wxString & newFileName, bool bWantSaveCompressed = false, bool addToHistory = true);
|
||||
#ifdef USE_LIBVORBIS
|
||||
bool SaveCompressedWaveTracks(const wxString strProjectPathName); // full path for aup except extension
|
||||
bool SaveCompressedWaveTracks(const wxString & strProjectPathName); // full path for aup except extension
|
||||
#endif
|
||||
void Clear();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user