X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fmidi_list_editor.cc;h=774c6fccf7da680c4c13f5a7b4988852ad3fc07b;hb=38c10a4d2367111f3b9c7ac2223a8b633bfeb147;hp=66a8e8b6df9c5da4af9f76bb5b5d946b9d357b40;hpb=9befa88debe08349deb01ebc00b605721865eda4;p=ardour.git diff --git a/gtk2_ardour/midi_list_editor.cc b/gtk2_ardour/midi_list_editor.cc index 66a8e8b6df..774c6fccf7 100644 --- a/gtk2_ardour/midi_list_editor.cc +++ b/gtk2_ardour/midi_list_editor.cc @@ -1,19 +1,19 @@ /* Copyright (C) 2009 Paul Davis - 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 - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + 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 + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include @@ -282,7 +282,7 @@ MidiListEditor::scroll_event (GdkEventScroll* ev) previous_selection.push_back (*i); - if (iter = model->get_iter (*i)) { + if ((iter = model->get_iter (*i))) { note = (*iter)[columns._note]; @@ -445,7 +445,6 @@ MidiListEditor::key_release (GdkEventKey* ev) TreeModel::Path path; TreeViewColumn* col; TreeModel::iterator iter; - TreeModel::Row row; MidiModel::NoteDiffCommand* cmd; boost::shared_ptr m (region->midi_source(0)->model()); boost::shared_ptr note; @@ -702,7 +701,7 @@ MidiListEditor::edited (const std::string& path, const std::string& text) TreeView::Selection::ListHandle_Path rows = view.get_selection()->get_selected_rows (); for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) { - if (iter = model->get_iter (*i)) { + if ((iter = model->get_iter (*i))) { note = (*iter)[columns._note]; @@ -809,7 +808,7 @@ MidiListEditor::selection_changed () NotePlayer* player = new NotePlayer (track); for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) { - if (iter = model->get_iter (*i)) { + if ((iter = model->get_iter (*i))) { note = (*iter)[columns._note]; player->add (note); }