Freesound tweaks from colinf (#4761).

git-svn-id: svn://localhost/ardour2/branches/3.0@11636 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-03-09 22:02:48 +00:00
parent c25b921888
commit c23a34a5a5
4 changed files with 75 additions and 52 deletions

View file

@ -126,8 +126,14 @@ class SoundFileBrowser : public ArdourDialog
Gtk::TreeModelColumn<std::string> id;
Gtk::TreeModelColumn<std::string> uri;
Gtk::TreeModelColumn<std::string> filename;
Gtk::TreeModelColumn<std::string> duration;
FreesoundColumns() { add(id); add(filename); add(uri); }
FreesoundColumns() {
add(id);
add(filename);
add(uri);
add(duration);
}
};
FoundTagColumns found_list_columns;