mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Fixes for GCC 4.3.
git-svn-id: svn://localhost/ardour2/branches/3.0@3303 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
38eb5f4539
commit
da45f489dd
40 changed files with 61 additions and 31 deletions
|
|
@ -3733,7 +3733,7 @@ Editor::get_valid_views (TimeAxisView* track, RouteGroup* group)
|
|||
v->push_back (*i);
|
||||
}
|
||||
|
||||
} else if (track != 0 && group == 0 || (track != 0 && group != 0 && !group->is_active())) {
|
||||
} else if ((track != 0 && group == 0) || (track != 0 && group != 0 && !group->is_active())) {
|
||||
|
||||
/* just the view for this track
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue