Fix some excessive search-and-replaces.
authorCarl Hetherington <carl@carlh.net>
Sat, 15 May 2010 23:57:41 +0000 (23:57 +0000)
committerCarl Hetherington <carl@carlh.net>
Sat, 15 May 2010 23:57:41 +0000 (23:57 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@7104 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/midi_time_axis.cc
gtk2_ardour/midi_tracer.cc
libs/ardour/midi_diskstream.cc
libs/midi++2/parser.cc

index 9477e5c02e612e5fe1bc6b3dd142cbc6e18aa355..51c4f3b0ede5a46666dca05fba7c6dc24e61017c 100644 (file)
@@ -393,7 +393,7 @@ MidiTimeAxisView::build_automation_action_menu ()
                   something about MIDI (!) would not expect to find them there.
                */
 
-               add_channel_command_menu_item (automation_items, _("Program PropertyChange"), MidiPgmChangeAutomation, MIDI_CMD_PGM_CHANGE);
+               add_channel_command_menu_item (automation_items, _("Program Change"), MidiPgmChangeAutomation, MIDI_CMD_PGM_CHANGE);
                add_channel_command_menu_item (automation_items, _("Bender"), MidiPitchBenderAutomation, MIDI_CMD_BENDER);
                add_channel_command_menu_item (automation_items, _("Pressure"), MidiChannelPressureAutomation, MIDI_CMD_CHANNEL_PRESSURE);
                
index ac061e489587686ebb37b2fe9ad0e44d7e203899..3da5e33be9fc63eccc54cb85700b39e8b182a198 100644 (file)
@@ -148,9 +148,9 @@ MidiTracer::tracer (Parser&, byte* msg, size_t len)
                
        case program:
                if (show_hex) {
-                       s += snprintf (&buf[s], bufsize, "%16s chn %2d %02x\n", "Program PropertyChange", (msg[0]&0xf)+1, (int) msg[1]);
+                       s += snprintf (&buf[s], bufsize, "%16s chn %2d %02x\n", "Program Change", (msg[0]&0xf)+1, (int) msg[1]);
                } else {
-                       s += snprintf (&buf[s], bufsize, "%16s chn %2d %-3d\n", "Program PropertyChange", (msg[0]&0xf)+1, (int) msg[1]);
+                       s += snprintf (&buf[s], bufsize, "%16s chn %2d %-3d\n", "Program Change", (msg[0]&0xf)+1, (int) msg[1]);
                }
                break;
                
index 8db5a277db7dfcd78fb4bffd006425e7d27e554e..e58c8896bd33711d083a8544c13a68b0c7df183e 100644 (file)
@@ -373,7 +373,7 @@ trace_midi (ostream& o, MIDI::byte *msg, size_t len)
                o << trace_prefix
                   << "Channel "
                   << (msg[0]&0xF)+1
-                  <<  " Program PropertyChange ProgNum "
+                  <<  " Program Change ProgNum "
                   << (int) msg[1]
                   << endl;
                break;
index a42a465193fa05a967b24ee96a8e003102c7f2cb..52de52c2d225ffe442e06a65f65371707db389ed 100644 (file)
@@ -196,7 +196,7 @@ Parser::trace_event (Parser &, byte *msg, size_t len)
                *o << trace_prefix 
                   << "Channel "
                   << (msg[0]&0xF)+1
-                  <<  " Program PropertyChange ProgNum "
+                  <<  " Program Change ProgNum "
                   << (int) msg[1]
                   << endmsg;
                break;