2017-10-03 Fred Gleason <fredg@paravelsystems.com>

* Implemented the '%s' wildcard in the report file path.
This commit is contained in:
Fred Gleason
2017-10-03 09:04:30 -04:00
parent 75883359b9
commit 70147e9345
14 changed files with 52 additions and 25 deletions

View File

@@ -44,9 +44,11 @@ bool RDReport::ExportTechnical(const QDate &startdate,const QDate &enddate,
char eol[3]="\n";
#ifdef WIN32
QString filename=RDDateDecode(exportPath(RDReport::Windows),startdate);
QString filename=
RDDateDecode(exportPath(RDReport::Windows),startdate,serviceName());
#else
QString filename=RDDateDecode(exportPath(RDReport::Linux),startdate);
QString filename=
RDDateDecode(exportPath(RDReport::Linux),startdate,serviceName());
if(incl_crs) {
strcpy(eol,"\r\n");
}