13
0

Use ARDOUR::peakfile_suffix in place of a couple of string constants

git-svn-id: svn://localhost/ardour2/trunk@1965 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2007-06-07 03:23:46 +00:00
parent ec642bb95a
commit f3b51babe3
2 changed files with 3 additions and 3 deletions

View File

@ -2769,7 +2769,7 @@ Session::peak_path_from_audio_path (string audio_path) const
res = peak_dir ();
res += PBD::basename_nosuffix (audio_path);
res += ".peak";
res += peakfile_suffix;
return res;
}

View File

@ -2519,7 +2519,7 @@ Session::write_favorite_dirs (FavoriteDirs & favs)
static bool
accept_all_non_peak_files (const string& path, void *arg)
{
return (path.length() > 5 && path.find (".peak") != (path.length() - 5));
return (path.length() > 5 && path.find (peakfile_suffix) != (path.length() - 5));
}
static bool
@ -2851,7 +2851,7 @@ Session::cleanup_sources (Session::cleanup_report& rep)
*/
string peakpath = (*x).substr (0, (*x).find_last_of ('.'));
peakpath += ".peak";
peakpath += peakfile_suffix;
if (access (peakpath.c_str(), W_OK) == 0) {
if (::unlink (peakpath.c_str()) != 0) {