Tidy.
authorDavid Robillard <d@drobilla.net>
Mon, 19 Oct 2009 14:13:03 +0000 (14:13 +0000)
committerDavid Robillard <d@drobilla.net>
Mon, 19 Oct 2009 14:13:03 +0000 (14:13 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@5796 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/ardour/midi_model.h
libs/ardour/io.cc

index 6c7e26119ac21c66817c782ef7df9d2d32138acd..6496fd169ac19ef18a670c739c534317ccf6d373 100644 (file)
@@ -69,7 +69,7 @@ public:
 
                void operator()();
                void undo();
-               
+
                int set_state (const XMLNode&, int version);
                XMLNode& get_state ();
 
@@ -113,7 +113,7 @@ public:
 
                void operator()();
                void undo();
-               
+
                int set_state (const XMLNode&, int version);
                XMLNode& get_state ();
 
@@ -128,13 +128,13 @@ public:
 
                struct NotePropertyChange {
                        DiffCommand::Property property;
-                       boost::shared_ptr<Evoral::Note<TimeType> > note;
+                       boost::shared_ptr< Evoral::Note<TimeType> > note;
                        union {
-                               uint8_t old_value;
+                               uint8_t  old_value;
                                TimeType old_time;
                        };
                        union {
-                               uint8_t new_value;
+                               uint8_t  new_value;
                                TimeType new_time;
                        };
                };
@@ -151,8 +151,6 @@ public:
        void                     apply_command(Session& session, Command* cmd);
        void                     apply_command_as_subcommand(Session& session, Command* cmd);
 
-
-
        bool write_to(boost::shared_ptr<MidiSource> source);
 
        // MidiModel doesn't use the normal AutomationList serialisation code
index 5bb51bfa18f159b3aef00fb79930b34d1c70b2a6..9da93848f0c4c45fe3a821bed10df1d6ae3122b4 100644 (file)
@@ -745,7 +745,7 @@ IO::get_port_counts_2X (XMLNode const & node, int version, ChanCount& n, boost::
        XMLNodeList children = node.children ();
 
        uint32_t n_audio = 0;
-       
+
        for (XMLNodeIterator i = children.begin(); i != children.end(); ++i) {
 
                if ((prop = node.property ("inputs")) != 0 && _direction == Input) {