2016-04-27 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'lib/rdcut.cpp' that caused the cut 'Description'
	field to be applied as a cut Title.
This commit is contained in:
Fred Gleason 2016-04-27 20:00:13 -04:00
parent 9d9f5f33cd
commit fa988211a8
2 changed files with 4 additions and 1 deletions

View File

@ -15104,3 +15104,6 @@
2016-04-27 Fred Gleason <fredg@paravelsystems.com>
* Added a 'bitRate' field in the return for the AudioInfo web method.
* Added an rdexport(1) utility in 'utils/rdexport/'.
2016-04-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'lib/rdcut.cpp' that caused the cut 'Description'
field to be applied as a cut Title.

View File

@ -922,7 +922,7 @@ void RDCut::getMetadata(RDWaveData *data) const
(const char *)cut_name);
q=new RDSqlQuery(sql);
if(q->first()) {
data->setTitle(q->value(0).toString());
data->setDescription(q->value(0).toString());
data->setOutCue(q->value(1).toString());
data->setIsrc(q->value(2).toString());
data->setIsci(q->value(3).toString());