summaryrefslogtreecommitdiffstats
path: root/kmymoney2/converter
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-18 12:45:32 +0100
commit5e6c401557744fe5f9765471605cc793939fee1f (patch)
treefa1c9abe564d03a362378f8a7a6304e27baf9c33 /kmymoney2/converter
parenteeae53f59df4d79d0399c2217a165ff2fab754db (diff)
downloadkmymoney-5e6c401557744fe5f9765471605cc793939fee1f.tar.gz
kmymoney-5e6c401557744fe5f9765471605cc793939fee1f.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>
Diffstat (limited to 'kmymoney2/converter')
-rw-r--r--kmymoney2/converter/mymoneygncreader.cpp2
-rw-r--r--kmymoney2/converter/webpricequote.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/kmymoney2/converter/mymoneygncreader.cpp b/kmymoney2/converter/mymoneygncreader.cpp
index 7e30f41..9377def 100644
--- a/kmymoney2/converter/mymoneygncreader.cpp
+++ b/kmymoney2/converter/mymoneygncreader.cpp
@@ -168,7 +168,7 @@ bool GncObject::isDataElement (const TQString &elName, const TQXmlAttributes& el
TQString GncObject::var (int i) const {
return (pMain->m_decoder == 0
? *(m_v.at(i))
- : pMain->m_decoder->toUnicode (*(m_v.at(i))));
+ : pMain->m_decoder->toUnicode((m_v.at(i))->utf8()));
}
void GncObject::adjustHideFactor () {
diff --git a/kmymoney2/converter/webpricequote.cpp b/kmymoney2/converter/webpricequote.cpp
index 76ea53e..ff2104b 100644
--- a/kmymoney2/converter/webpricequote.cpp
+++ b/kmymoney2/converter/webpricequote.cpp
@@ -194,7 +194,7 @@ bool WebPriceQuote::launchNative( const TQString& _symbol, const TQString& _id,
void WebPriceQuote::removeTempFile(const TQString& tmpFile)
{
if(tmpFile == m_tmpFile) {
- unlink(tmpFile);
+ unlink(tmpFile.local8Bit());
m_tmpFile = TQString();
}
}
@@ -835,7 +835,7 @@ void FinanceQuoteProcess::slotProcessExited(TDEProcess*)
void FinanceQuoteProcess::launch (const TQString& scriptPath) {
clearArguments();
arguments.append(TQCString("perl"));
- arguments.append (TQCString(scriptPath));
+ arguments.append (scriptPath.local8Bit());
arguments.append (TQCString("-l"));
if (!start(TDEProcess::NotifyOnExit, TDEProcess::Stdout)) tqFatal ("Unable to start FQ script");
return;