2017-07-18 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in the 'ListCuts web API call that caused incorrect
	<startPoint> and <endPoint> values to the returned.
This commit is contained in:
Fred Gleason 2017-07-18 13:54:49 -04:00
parent 9f18d8ba2b
commit 298c50c20d
2 changed files with 4 additions and 1 deletions

View File

@ -15898,3 +15898,6 @@
accounts with a password containing one or more '$' characters to fail.
2017-07-17 Fred Gleason <fredg@paravelsystems.com>
* Incremented the package version to 2.16.0int06_rfa00.
2017-07-18 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the 'ListCuts web API call that caused incorrect
<startPoint> and <endPoint> values to the returned.

View File

@ -1496,7 +1496,7 @@ QString RDCut::xml(RDSqlQuery *q,bool absolute,RDSettings *settings)
else {
xml+=" "+RDXmlField("startPoint",0);
xml+=" "+
RDXmlField("endPoint",q->value(31).toInt()-q->value(59).toInt());
RDXmlField("endPoint",q->value(60).toInt()-q->value(59).toInt());
if(q->value(61).toInt()<0) {
xml+=" "+RDXmlField("fadeupPoint",-1);
}