From f3b51babe34c31ac9779dea89a0e0cb79b701e62 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Thu, 7 Jun 2007 03:23:46 +0000 Subject: [PATCH] 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 --- libs/ardour/session.cc | 2 +- libs/ardour/session_state.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index af66f776d0..aa2df558a2 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -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; } diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index c6ac609783..2eb14fc1da 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -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) {