mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-15 02:30:44 +02:00
List of commands that were executed in the `src directory`: * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.h * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.cpp Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
20 lines
424 B
C++
20 lines
424 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
Legacy.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#include <wx/defs.h>
|
|
|
|
class wxFileName;
|
|
|
|
//! Update Audacity 1.0 file in-place to XML format
|
|
/*! @return true if successful, else no effect on the file
|
|
@excsafety{Strong}
|
|
*/
|
|
bool ConvertLegacyProjectFile(const wxFileName &filename);
|