summaryrefslogtreecommitdiff
path: root/libs/ardour/midi_patch_manager.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /libs/ardour/midi_patch_manager.cc
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/midi_patch_manager.cc')
-rw-r--r--libs/ardour/midi_patch_manager.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/libs/ardour/midi_patch_manager.cc b/libs/ardour/midi_patch_manager.cc
index 7c824b1e8d..a0ccbdec9e 100644
--- a/libs/ardour/midi_patch_manager.cc
+++ b/libs/ardour/midi_patch_manager.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2008 Hans Baier
+ Copyright (C) 2008 Hans Baier
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -46,7 +46,7 @@ MidiPatchManager::set_session (Session& s)
{
_session = &s;
_session->GoingAway.connect (mem_fun (*this, &MidiPatchManager::drop_session));
-
+
refresh();
}
@@ -56,27 +56,27 @@ MidiPatchManager::refresh()
_documents.clear();
_master_devices_by_model.clear();
_all_models.clear();
-
+
path path_to_patches = _session->session_directory().midi_patch_path();
-
+
if (!exists(path_to_patches)) {
return;
}
-
+
assert(is_directory(path_to_patches));
-
+
Glib::PatternSpec pattern(Glib::ustring("*.midnam"));
vector<path> result;
-
+
find_matching_files_in_directory(path_to_patches, pattern, result);
cerr << "Loading " << result.size() << " MIDI patches from " << path_to_patches.to_string() << endl;
-
+
for (vector<path>::iterator i = result.begin(); i != result.end(); ++i) {
boost::shared_ptr<MIDINameDocument> document(new MIDINameDocument(i->to_string()));
- for (MIDINameDocument::MasterDeviceNamesList::const_iterator device =
+ for (MIDINameDocument::MasterDeviceNamesList::const_iterator device =
document->master_device_names_by_model().begin();
- device != document->master_device_names_by_model().end();
+ device != document->master_device_names_by_model().end();
++device) {
//cerr << "got model " << device->first << endl;
// have access to the documents by model name
@@ -84,7 +84,7 @@ MidiPatchManager::refresh()
// build a list of all master devices from all documents
_master_devices_by_model[device->first] = device->second;
_all_models.push_back(device->first);
-
+
// make sure there are no double model names
// TODO: handle this gracefully.
assert(_documents.count(device->first) == 1);