0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 08:29:07 +03:00

Finish 1.4.102

# Conflicts:
#	limereport/lrreportdesignwindow.cpp
This commit is contained in:
Arin Alex
2018-08-27 17:48:02 +03:00
2 changed files with 7 additions and 2 deletions

View File

@@ -88,7 +88,11 @@ ReportDesignWindow::ReportDesignWindow(ReportEnginePrivateInterface* report, QWi
m_lblReportName = new QLabel(report->reportFileName(),this);
m_statusBar->insertWidget(0,m_lblReportName);
setStatusBar(m_statusBar);
setWindowTitle("Lime Report Designer");
QString windowTitle = "Lime Report Designer";
if (!report->reportName().isEmpty())
windowTitle = report->reportName() + " - " + windowTitle;
setWindowTitle(windowTitle);
showDefaultEditors();
showDefaultToolBars();
restoreSetting();
@@ -886,6 +890,7 @@ void ReportDesignWindow::slotNewReport()
m_lblReportName->setText("");
startNewReport();
m_deletePageAction->setEnabled(false);
setWindowTitle("Lime Report Designer");
}
}