summaryrefslogtreecommitdiff
path: root/libs/ardour/audio_library.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/audio_library.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/audio_library.cc')
-rw-r--r--libs/ardour/audio_library.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/libs/ardour/audio_library.cc b/libs/ardour/audio_library.cc
index 3dc97c622a..26f225273f 100644
--- a/libs/ardour/audio_library.cc
+++ b/libs/ardour/audio_library.cc
@@ -51,7 +51,7 @@ AudioLibrary::AudioLibrary ()
sfdb_file_path /= sfdb_file_name;
src = Glib::filename_to_uri (sfdb_file_path.to_string ());
-
+
// workaround for possible bug in raptor that crashes when saving to a
// non-existant file.
@@ -77,11 +77,11 @@ AudioLibrary::set_tags (string member, vector<string> tags)
{
sort (tags.begin(), tags.end());
tags.erase (unique(tags.begin(), tags.end()), tags.end());
-
+
const string file_uri(Glib::filename_to_uri (member));
-
+
lrdf_remove_uri_matches (file_uri.c_str());
-
+
for (vector<string>::iterator i = tags.begin(); i != tags.end(); ++i) {
lrdf_add_triple (src.c_str(), file_uri.c_str(), TAG, (*i).c_str(), lrdf_literal);
}
@@ -91,27 +91,27 @@ vector<string>
AudioLibrary::get_tags (string member)
{
vector<string> tags;
-
+
lrdf_statement pattern;
pattern.subject = strdup(Glib::filename_to_uri(member).c_str());
pattern.predicate = (char*)TAG;
pattern.object = 0;
pattern.object_type = lrdf_literal;
-
+
lrdf_statement* matches = lrdf_matches (&pattern);
free (pattern.subject);
-
+
lrdf_statement* current = matches;
while (current != 0) {
tags.push_back (current->object);
-
+
current = current->next;
}
-
+
lrdf_free_statements (matches);
-
+
sort (tags.begin(), tags.end());
-
+
return tags;
}