setReportFileName(const QString& fileName) has been added to ReportEngine

This commit is contained in:
Arin Alexander
2016-04-21 14:58:21 +03:00
parent 84953b6847
commit cb54963db9
4 changed files with 9 additions and 0 deletions

View File

@@ -698,6 +698,12 @@ QString ReportEngine::reportFileName()
return d->reportFileName();
}
void ReportEngine::setReportFileName(const QString &fileName)
{
Q_D(ReportEngine);
return d->setReportFileName(fileName);
}
bool ReportEngine::saveToFile()
{
Q_D(ReportEngine);