mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Correct loss of previous changes.
This commit is contained in:
parent
41c7d43f7b
commit
aabd97d537
@ -1205,15 +1205,18 @@ void Statistics::printReport(QWidget * parent) {
|
||||
#ifdef Q_OS_LINUX
|
||||
printer.setPrinterName("Print to File (PDF)");
|
||||
printer.setOutputFormat(QPrinter::PdfFormat);
|
||||
QString name;
|
||||
QString datestr;
|
||||
QString name = "Statistics";
|
||||
QString datestr = QDate::currentDate().toString(Qt::ISODate);
|
||||
|
||||
if (ui->tabWidget->currentWidget() == ui->statisticsTab) {
|
||||
name = "Statistics";
|
||||
datestr = QDate::currentDate().toString(Qt::ISODate);
|
||||
} else { name = "Unknown"; }
|
||||
// if (ui->tabWidget->currentWidget() == ui->statisticsTab) {
|
||||
// name = "Statistics";
|
||||
// datestr = QDate::currentDate().toString(Qt::ISODate);
|
||||
// } else if (ui->tabWidget->currentWidget() == ui->helpTab) {
|
||||
// name = "Help";
|
||||
// datestr = QDateTime::currentDateTime().toString(Qt::ISODate);
|
||||
// } else { name = "Unknown"; }
|
||||
|
||||
QString filename = p_pref->Get("{home}/" + name + "_" + p_profile->user->userName() + "_" + datestr + ".pdf");
|
||||
QString filename = p_pref->Get("{home}/") + name + "_" + p_profile->user->userName() + "_" + datestr + ".pdf";
|
||||
|
||||
printer.setOutputFileName(filename);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user