get editor.cc to compile

git-svn-id: svn://localhost/trunk/ardour2@99 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2005-11-16 02:57:22 +00:00
parent adacfd9b24
commit f16caf535c
36 changed files with 219 additions and 259 deletions

View file

@ -44,11 +44,11 @@ Gtkmm2ext::init ()
}
void
Gtkmm2ext::set_popdown_strings (Gtk::ComboBoxText& cr, vector<string>& strings)
Gtkmm2ext::set_popdown_strings (Gtk::ComboBoxText& cr, const vector<string>& strings)
{
cr.clear ();
for (vector<string>::iterator i = strings.begin(); i != strings.end(); ++i) {
for (vector<string>::const_iterator i = strings.begin(); i != strings.end(); ++i) {
cr.append_text (*i);
}
}