From 691ff40d487122b72fff7c9aee41f124486b310d Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Mon, 25 Mar 2019 19:39:38 -0400 Subject: [PATCH] Fix UserName fill-in in filename and replace PREF as required --- oscar/exportcsv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/exportcsv.cpp b/oscar/exportcsv.cpp index 6e1d5833..70163ba9 100644 --- a/oscar/exportcsv.cpp +++ b/oscar/exportcsv.cpp @@ -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);