summaryrefslogtreecommitdiffstats
path: root/kmymoney2/plugins/ofximport/dialogs
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-03-17 18:50:52 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-03-20 18:50:39 +0100
commit49e34b02b0bb609ce6e9ff1d2d96bdfcb03617d1 (patch)
treef8299219a274dedc710b0bbf0ff1be832d47f197 /kmymoney2/plugins/ofximport/dialogs
parenta553069ad068dcab541282df24dbe12591153af8 (diff)
downloadkmymoney-49e34b02b0bb609ce6e9ff1d2d96bdfcb03617d1.tar.gz
kmymoney-49e34b02b0bb609ce6e9ff1d2d96bdfcb03617d1.zip
Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 5e6c401557744fe5f9765471605cc793939fee1f)
Diffstat (limited to 'kmymoney2/plugins/ofximport/dialogs')
-rw-r--r--kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp b/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp
index c1c0324..2e783f5 100644
--- a/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp
+++ b/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.cpp
@@ -260,7 +260,7 @@ bool KOnlineBankingSetupWizard::finishLoginPage(void)
ofx_set_account_cb(ctx, ofxAccountCallback, this);
ofx_set_status_cb(ctx, ofxStatusCallback, this);
// Add resulting accounts to the account list
- libofx_proc_file(ctx, filename.path(), AUTODETECT);
+ libofx_proc_file(ctx, filename.path().local8Bit(), AUTODETECT);
libofx_free_context(ctx);
++m_it_info;