Compare commits
2 commits
e48fbe82e0
...
072af76de1
Author | SHA1 | Date | |
---|---|---|---|
072af76de1 | |||
92ecc92bf7 |
3 changed files with 6 additions and 2 deletions
|
@ -48,7 +48,11 @@ void ReportDialog::onExportCsvButtonClicked()
|
||||||
if (filename.isEmpty())
|
if (filename.isEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
#if defined(_WIN64) || defined(_WIN32)
|
||||||
fs::path filePath(filename.toStdWString());
|
fs::path filePath(filename.toStdWString());
|
||||||
|
#else
|
||||||
|
fs::path filePath(filename.toStdString());
|
||||||
|
#endif
|
||||||
|
|
||||||
market_->exportReportToCSV(filePath, feeInPercent, maxFeeInEuro);
|
market_->exportReportToCSV(filePath, feeInPercent, maxFeeInEuro);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit ea547fdb16c7baf99bd9ced5febba52cc5da3ca3
|
Subproject commit 6c91e845320e907658fa5192f6884d1fcbbf3ad9
|
|
@ -1 +1 @@
|
||||||
Subproject commit bdbb09b5f21ebea4cd7dfb43b29114a94e04a3a1
|
Subproject commit e93c12ab69a25fcaa963416f0e348d3269263190
|
Loading…
Reference in a new issue