remove the (unused) concept of a MIDI patchfile folder per session

This commit is contained in:
Paul Davis 2020-01-05 18:47:59 -07:00
parent d17a89c9a7
commit f8243e62e7
3 changed files with 0 additions and 15 deletions

View File

@ -79,13 +79,6 @@ public:
*/
const std::string midi_path () const;
/**
* @return the absolute path to the directory in which
* the session stores MIDNAM patch files, ie
* root_path()/interchange/session_name/patchfiles
*/
const std::string midi_patch_path () const;
/**
* @return The absolute path to the directory in which all
* peak files are stored for a session.

View File

@ -561,8 +561,6 @@ Session::destroy ()
/* stop auto dis/connecting */
auto_connect_thread_terminate ();
MIDI::Name::MidiPatchManager::instance().remove_search_path(session_directory().midi_patch_path());
_engine.remove_session ();
/* deregister all ports - there will be no process or any other

View File

@ -220,12 +220,6 @@ SessionDirectory::midi_path () const
return Glib::build_filename (sources_root(), midi_dir_name);
}
const std::string
SessionDirectory::midi_patch_path () const
{
return Glib::build_filename (sources_root(), midi_patch_dir_name);
}
const std::string
SessionDirectory::video_path () const
{