Noop: fix white space
authorLen Ovens <len@ovenwerks.net>
Wed, 17 Oct 2018 23:25:49 +0000 (16:25 -0700)
committerLen Ovens <len@ovenwerks.net>
Wed, 17 Oct 2018 23:25:49 +0000 (16:25 -0700)
libs/ardour/internal_send.cc

index 0292badefacc400ac32598c45af4bf7b84b988be..8b2ace2654f024d4a3e74b490f3ff030881c1f31 100644 (file)
@@ -91,9 +91,9 @@ InternalSend::use_target (boost::shared_ptr<Route> sendto)
                _send_to->remove_send_from_internal_return (this);
        }
 
-        _send_to = sendto;
+       _send_to = sendto;
 
-        _send_to->add_send_to_internal_return (this);
+       _send_to->add_send_to_internal_return (this);
 
        mixbufs.ensure_buffers (_send_to->internal_return()->input_streams(), _session.get_block_size());
        mixbufs.set_count (_send_to->internal_return()->input_streams());
@@ -104,19 +104,19 @@ InternalSend::use_target (boost::shared_ptr<Route> sendto)
 
        reset_panner ();
 
-        set_name (sendto->name());
-        _send_to_id = _send_to->id();
+       set_name (sendto->name());
+       _send_to_id = _send_to->id();
 
-        target_connections.drop_connections ();
+       target_connections.drop_connections ();
 
-        _send_to->DropReferences.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_going_away, this));
-        _send_to->PropertyChanged.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_property_changed, this, _1));
-        _send_to->io_changed.connect_same_thread (target_connections, boost::bind (&InternalSend::target_io_changed, this));
+       _send_to->DropReferences.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_going_away, this));
+       _send_to->PropertyChanged.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_property_changed, this, _1));
+       _send_to->io_changed.connect_same_thread (target_connections, boost::bind (&InternalSend::target_io_changed, this));
        boost::shared_ptr<Stripable> st_to = boost::dynamic_pointer_cast<Stripable> (_send_to);
        st_to->presentation_info().PropertyChanged.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_pi_change, this, _1));
        send_to_pi_change (Properties::hidden);
 
-        return 0;
+       return 0;
 }
 
 void
@@ -137,7 +137,7 @@ InternalSend::send_from_going_away ()
 void
 InternalSend::send_to_going_away ()
 {
-        target_connections.drop_connections ();
+       target_connections.drop_connections ();
        _send_to.reset ();
        _send_to_id = "0";
 }
@@ -280,7 +280,7 @@ InternalSend::set_block_size (pframes_t nframes)
                mixbufs.ensure_buffers (_send_to->internal_return()->input_streams(), nframes);
        }
 
-        return 0;
+       return 0;
 }
 
 void
@@ -352,7 +352,7 @@ InternalSend::connect_when_legal ()
                return 0;
        }
 
-        boost::shared_ptr<Route> sendto;
+       boost::shared_ptr<Route> sendto;
 
        if ((sendto = _session.route_by_id (_send_to_id)) == 0) {
                error << string_compose (_("%1 - cannot find any track/bus with the ID %2 to connect to"), display_name(), _send_to_id) << endmsg;
@@ -360,7 +360,7 @@ InternalSend::connect_when_legal ()
                return -1;
        }
 
-        return use_target (sendto);
+       return use_target (sendto);
 }
 
 bool