NO-OP whitespace + comments
authorRobin Gareus <robin@gareus.org>
Sun, 10 Apr 2016 18:53:42 +0000 (20:53 +0200)
committerRobin Gareus <robin@gareus.org>
Sun, 10 Apr 2016 18:56:06 +0000 (20:56 +0200)
libs/ardour/ardour/io.h
libs/ardour/ardour/port.h
libs/ardour/ardour/port_set.h
libs/ardour/playlist.cc

index 9afd0167e3bd040154180047289de698b6a92884..e32c05c9d3deb6e5f5b958c182b47476a01a1937 100644 (file)
@@ -74,8 +74,8 @@ class LIBARDOUR_API IO : public SessionObject, public Latent
                Output
        };
 
-        IO (Session&, const std::string& name, Direction, DataType default_type = DataType::AUDIO, bool sendish = false);
-        IO (Session&, const XMLNode&, DataType default_type = DataType::AUDIO, bool sendish = false);
+       IO (Session&, const std::string& name, Direction, DataType default_type = DataType::AUDIO, bool sendish = false);
+       IO (Session&, const XMLNode&, DataType default_type = DataType::AUDIO, bool sendish = false);
 
        virtual ~IO();
 
@@ -94,7 +94,7 @@ class LIBARDOUR_API IO : public SessionObject, public Latent
 
        int ensure_io (ChanCount cnt, bool clear, void *src);
 
-        int connect_ports_to_bundle (boost::shared_ptr<Bundle>, bool exclusive, void *);
+       int connect_ports_to_bundle (boost::shared_ptr<Bundle>, bool exclusive, void *);
        int disconnect_ports_from_bundle (boost::shared_ptr<Bundle>, void *);
 
        BundleList bundles_connected ();
@@ -207,7 +207,7 @@ class LIBARDOUR_API IO : public SessionObject, public Latent
        Direction _direction;
        DataType _default_type;
        bool     _active;
-        bool     _sendish;
+       bool     _sendish;
 
   private:
        int connecting_became_legal ();
index 97f8a4e77853fa18b49c003af55ac72d2c7a32e1..6eca80a939034fc46a7d861d9949d56d51927308 100644 (file)
@@ -61,7 +61,7 @@ public:
        int set_name (std::string const &);
 
        /** @return flags */
-        PortFlags flags () const {
+       PortFlags flags () const {
                return _flags;
        }
 
@@ -98,9 +98,9 @@ public:
        bool last_monitor() const { return _last_monitor; }
        void set_last_monitor (bool yn) { _last_monitor = yn; }
 
-        PortEngine::PortHandle port_handle() { return _port_handle; }
+       PortEngine::PortHandle port_handle() { return _port_handle; }
 
-        void get_connected_latency_range (LatencyRange& range, bool playback) const;
+       void get_connected_latency_range (LatencyRange& range, bool playback) const;
 
        void set_private_latency_range (LatencyRange& range, bool playback);
        const LatencyRange&  private_latency_range (bool playback) const;
index cd76f75ee3be691ecbf700db33515e8a9f8aebbb..fce36279674c1784bda063cbbe52f7a4d79a4c9e 100644 (file)
@@ -49,10 +49,15 @@ public:
        void add (boost::shared_ptr<Port> port);
        bool remove (boost::shared_ptr<Port> port);
 
-       /** nth port */
+       /** nth port
+        * @param index port index
+        */
        boost::shared_ptr<Port> port(size_t index) const;
 
-       /** nth port of type @a t, or nth port if t = NIL */
+       /** nth port of type @a t, or nth port if t = NIL
+        * @param t data type
+        * @param index port index
+        */
        boost::shared_ptr<Port> port(DataType t, size_t index) const;
 
        boost::shared_ptr<AudioPort> nth_audio_port(size_t n) const;
index b571a9eb5fd618698264c4ccc93b93be4fe9fc74..239622a38c3252e3242dcd9e2ddbd37ff81f5edb 100644 (file)
@@ -1769,7 +1769,7 @@ Playlist::region_bounds_changed (const PropertyChange& what_changed, boost::shar
 
  }
 
- /***********************************************************************
+ /* *********************************************************************
   FINDING THINGS
   **********************************************************************/