summaryrefslogtreecommitdiffstats
path: root/src/konqplugin/tork_plug_in.cpp
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2021-01-14 02:37:59 +0100
committerSlávek Banko <[email protected]>2021-01-14 02:37:59 +0100
commit355f00c2bd6f4b2870133d0423420ef8046b7156 (patch)
tree914337ce5bd4bd2bc984866f02c370c2a2788c7e /src/konqplugin/tork_plug_in.cpp
parent5962b7e681adb58055898f2e35665934bd08e235 (diff)
downloadtork-355f00c2bd6f4b2870133d0423420ef8046b7156.tar.gz
tork-355f00c2bd6f4b2870133d0423420ef8046b7156.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 <[email protected]>
Diffstat (limited to 'src/konqplugin/tork_plug_in.cpp')
-rw-r--r--src/konqplugin/tork_plug_in.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/konqplugin/tork_plug_in.cpp b/src/konqplugin/tork_plug_in.cpp
index 98dd755..6010b7d 100644
--- a/src/konqplugin/tork_plug_in.cpp
+++ b/src/konqplugin/tork_plug_in.cpp
@@ -147,7 +147,7 @@ void Tork_plug_in::openWithBrowser(const TQString &browser)
if (p_dcopServer->isApplicationRegistered ("tork")){
TQString function = TQString("anonymized%1").arg(browser);
DCOPRef("tork", "DCOPTork").send("startEverything");
- DCOPRef("tork", "DCOPTork").send(TQCString(function),url);
+ DCOPRef("tork", "DCOPTork").send(function.utf8(), url);
}else
KRun::runCommand( TQString("tork --anonymous%1 %2").arg(browser).arg(url), "tork", "tork" );