Compare commits

...

2 commits

Author SHA1 Message Date
072af76de1 ... 2021-09-19 19:53:20 +02:00
92ecc92bf7 Fix umlaut-crash on linux machines 2021-09-19 19:52:32 +02:00
3 changed files with 6 additions and 2 deletions

View file

@ -48,7 +48,11 @@ void ReportDialog::onExportCsvButtonClicked()
if (filename.isEmpty())
return;
#if defined(_WIN64) || defined(_WIN32)
fs::path filePath(filename.toStdWString());
#else
fs::path filePath(filename.toStdString());
#endif
market_->exportReportToCSV(filePath, feeInPercent, maxFeeInEuro);
}

@ -1 +1 @@
Subproject commit ea547fdb16c7baf99bd9ced5febba52cc5da3ca3
Subproject commit 6c91e845320e907658fa5192f6884d1fcbbf3ad9

@ -1 +1 @@
Subproject commit bdbb09b5f21ebea4cd7dfb43b29114a94e04a3a1
Subproject commit e93c12ab69a25fcaa963416f0e348d3269263190