mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 22:55:44 +01:00
Use SessionDirectory and sys::path in Session::peak_path_from_audio_path for portability
git-svn-id: svn://localhost/ardour2/trunk@2003 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
238cab0166
commit
b2d26fcb9e
1 changed files with 3 additions and 5 deletions
|
|
@ -2764,13 +2764,11 @@ Session::source_by_path_and_channel (const Glib::ustring& path, uint16_t chn)
|
|||
string
|
||||
Session::peak_path_from_audio_path (string audio_path) const
|
||||
{
|
||||
string res;
|
||||
sys::path peakfile_path(_session_dir->peak_path());
|
||||
|
||||
res = peak_dir ();
|
||||
res += PBD::basename_nosuffix (audio_path);
|
||||
res += peakfile_suffix;
|
||||
peakfile_path /= basename_nosuffix (audio_path) + peakfile_suffix;
|
||||
|
||||
return res;
|
||||
return peakfile_path.to_string();
|
||||
}
|
||||
|
||||
string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue