Use ARDOUR::peakfile_suffix in place of a couple of string constants
authorTim Mayberry <mojofunk@gmail.com>
Thu, 7 Jun 2007 03:23:46 +0000 (03:23 +0000)
committerTim Mayberry <mojofunk@gmail.com>
Thu, 7 Jun 2007 03:23:46 +0000 (03:23 +0000)
git-svn-id: svn://localhost/ardour2/trunk@1965 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/session.cc
libs/ardour/session_state.cc

index af66f776d0d2073adcd4854fb2bb1ca0ce0aad25..aa2df558a24d01648ace0556080062a6e4be2a27 100644 (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;
 }
index c6ac609783b706316b666dd1d259baa1c8c32e04..2eb14fc1dac00da02bdb263dbb68d965d78262e5 100644 (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) {