mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-24 08:34:38 +03:00
Fix Lime Report Designer's Title Bar not showing Report's Name after saving.
This commit is contained in:
parent
c9efbc9cff
commit
e74bc09eda
@ -1126,6 +1126,7 @@ void ReportDesignWindow::slotSaveReport()
|
||||
QString filename = m_reportDesignWidget->reportFileName();
|
||||
m_lblReportName->setText(filename);
|
||||
if(!filename.isEmpty()) addRecentFile(filename);
|
||||
setWindowTitle(m_reportDesignWidget->report()->reportName() + " - Lime Report Designer");
|
||||
}
|
||||
|
||||
void ReportDesignWindow::slotSaveReportAs()
|
||||
@ -1137,6 +1138,7 @@ void ReportDesignWindow::slotSaveReportAs()
|
||||
m_reportDesignWidget->saveToFile(fileName);
|
||||
m_lblReportName->setText(m_reportDesignWidget->reportFileName());
|
||||
addRecentFile(fileName);
|
||||
setWindowTitle(m_reportDesignWidget->report()->reportName() + " - Lime Report Designer");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -876,6 +876,7 @@ bool ReportEnginePrivate::saveToFile(const QString &fileName)
|
||||
}
|
||||
}
|
||||
dropChanges();
|
||||
this->setReportName(fi.baseName());
|
||||
return saved;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user