mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix UserName fill-in in filename and replace PREF as required
This commit is contained in:
parent
1be2b84111
commit
691ff40d48
@ -70,7 +70,7 @@ ExportCSV::~ExportCSV()
|
||||
void ExportCSV::on_filenameBrowseButton_clicked()
|
||||
{
|
||||
QString timestamp = tr("OSCAR_");
|
||||
timestamp += p_profile->Get("Username") + "_";
|
||||
timestamp += p_profile->Get("UserName") + "_";
|
||||
|
||||
if (ui->rb1_details->isChecked()) { timestamp += tr("Details_"); }
|
||||
|
||||
@ -84,7 +84,7 @@ void ExportCSV::on_filenameBrowseButton_clicked()
|
||||
|
||||
timestamp += ".csv";
|
||||
QString name = QFileDialog::getSaveFileName(this, tr("Select file to export to"),
|
||||
PREF.Get("{home}/") + timestamp, tr("CSV Files (*.csv)"));
|
||||
p_pref->Get("{home}/") + timestamp, tr("CSV Files (*.csv)"));
|
||||
|
||||
if (name.isEmpty()) {
|
||||
ui->exportButton->setEnabled(false);
|
||||
|
Loading…
Reference in New Issue
Block a user