2017-02-17 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'rdlogedit/voice_tracker.cpp' where the Title
	of voice track carts was not having whitespace trimmed properly.
This commit is contained in:
Fred Gleason 2017-02-17 13:47:46 -05:00
parent d4682f6e1b
commit de66db368c
2 changed files with 4 additions and 1 deletions

View File

@ -15585,3 +15585,6 @@
'<lengthDeviation>', '<averageSegueLength>' and
'<averageHookLength>' fields in the return of the 'ListCart'
and 'ListCarts' web methods to return a two-digit hours field.
2017-02-17 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'rdlogedit/voice_tracker.cpp' where the Title
of voice track carts was not having whitespace trimmed properly.

View File

@ -3930,7 +3930,7 @@ bool VoiceTracker::InitTrack()
}
edit_track_cart=new RDCart(next_cart);
edit_track_cart->setOwner(track_log->name());
edit_track_cart->setTitle(edit_logline[1]->markerComment());
edit_track_cart->setTitle(edit_logline[1]->markerComment().stripWhiteSpace());
if(edit_track_cuts[1]!=NULL) {
delete edit_track_cuts[1];
}