mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 02:56:35 +01:00
Minor updates for PathList and OptionEditor.
git-svn-id: svn://localhost/ardour2/trunk@694 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f8f8497330
commit
690e04ed42
4 changed files with 15 additions and 5 deletions
|
|
@ -72,7 +72,7 @@ PathList::get_paths ()
|
|||
void
|
||||
PathList::set_paths (vector<string> paths)
|
||||
{
|
||||
_store.clear();
|
||||
_store->clear();
|
||||
|
||||
for (vector<string>::iterator i = paths.begin(); i != paths.end(); ++i) {
|
||||
Gtk::ListStore::iterator iter = _store->append();
|
||||
|
|
@ -99,7 +99,7 @@ PathList::add_btn_clicked ()
|
|||
Gtk::ListStore::Row row = *iter;
|
||||
row[path_columns.paths] = pathname;
|
||||
|
||||
paths_updated (); // EMIT_SIGNAL
|
||||
PathsUpdated (); // EMIT_SIGNAL
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -110,7 +110,7 @@ PathList::subtract_btn_clicked ()
|
|||
Gtk::ListStore::iterator iter = _view.get_selection()->get_selected();
|
||||
_store->erase (iter);
|
||||
|
||||
paths_updated (); // EMIT_SIGNAL
|
||||
PathsUpdated (); // EMIT_SIGNAL
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue