summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_selection.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-12-12 00:13:12 +0100
committerRobin Gareus <robin@gareus.org>2017-12-12 00:13:12 +0100
commitba2b136af2c05dcc61aef712b2387796d497c781 (patch)
tree765a6c782c07790c97891e9514833a895b741b9d /gtk2_ardour/editor_selection.cc
parent23a403015955d63cc0c1d505e7dc65875005cf31 (diff)
NO-OP: whitespace
Diffstat (limited to 'gtk2_ardour/editor_selection.cc')
-rw-r--r--gtk2_ardour/editor_selection.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc
index a060f93d04..11d5310f77 100644
--- a/gtk2_ardour/editor_selection.cc
+++ b/gtk2_ardour/editor_selection.cc
@@ -399,7 +399,7 @@ Editor::mapover_tracks (sigc::slot<void, RouteTimeAxisView&, uint32_t> sl, TimeA
RouteGroup* group = route_basis->route()->route_group();
- if (group && group->enabled_property(prop) && group->enabled_property (Properties::active.property_id) ) {
+ if (group && group->enabled_property(prop) && group->enabled_property (Properties::active.property_id)) {
/* the basis is a member of an active route group, with the appropriate
properties; find other members */
@@ -443,7 +443,7 @@ Editor::mapover_tracks_with_unique_playlists (sigc::slot<void, RouteTimeAxisView
RouteGroup* group = route_basis->route()->route_group(); // could be null, not a problem
- if (group && group->enabled_property(prop) && group->enabled_property (Properties::active.property_id) ) {
+ if (group && group->enabled_property(prop) && group->enabled_property (Properties::active.property_id)) {
/* the basis is a member of an active route group, with the appropriate
properties; find other members */
@@ -1844,7 +1844,7 @@ Editor::set_selection_from_range (Location& loc)
// if no tracks are selected, enable all tracks
// (_something_ has to be selected for any range selection, otherwise the user won't see anything)
- if ( selection->tracks.empty() ) {
+ if (selection->tracks.empty()) {
select_all_tracks();
}
@@ -2103,7 +2103,7 @@ Editor::select_range_between ()
samplepos_t start;
samplepos_t end;
- if ( !selection->time.empty() ) {
+ if (!selection->time.empty()) {
selection->clear_time ();
}
@@ -2128,7 +2128,7 @@ Editor::get_edit_op_range (samplepos_t& start, samplepos_t& end) const
/* if an explicit range exists, use it */
- if ( (mouse_mode == MouseRange || get_smart_mode() ) && !selection->time.empty()) {
+ if ((mouse_mode == MouseRange || get_smart_mode()) && !selection->time.empty()) {
/* we know that these are ordered */
start = selection->time.start();
end = selection->time.end_sample();