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

* Fixed a bug in 'web/rdxport/logs.cpp' the caused the 'SaveLog'
	web method to fail.
This commit is contained in:
Fred Gleason
2017-02-07 08:46:24 -05:00
parent af592fa200
commit 79a0efb50d
2 changed files with 4 additions and 1 deletions

View File

@@ -259,7 +259,7 @@ void Xport::SaveLog()
for(int i=0;i<line_quantity;i++) {
logevt->insert(i,1);
RDLogLine *ll=logevt->logLine(i);
QString line=QString().sprintf("LINE%d_",i);
QString line=QString().sprintf("LINE%d",i);
QString str;
int integer1;
int integer2;