diff options
Diffstat (limited to 'src/tor_ioslave/torioslave.cpp')
-rw-r--r-- | src/tor_ioslave/torioslave.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tor_ioslave/torioslave.cpp b/src/tor_ioslave/torioslave.cpp index 429ced0..1c1e875 100644 --- a/src/tor_ioslave/torioslave.cpp +++ b/src/tor_ioslave/torioslave.cpp @@ -106,7 +106,7 @@ void tdeio_torProtocol::get(const KURL& url ) if (p_dcopServer->isApplicationRegistered ("tork")){ m_torkrunning = true; DCOPRef tork( "tork", "DCOPTork" ); - anonymized = tork.call( "getKDESetting" ); + anonymized = tork.call( "getTDESetting" ); } @@ -114,18 +114,18 @@ void tdeio_torProtocol::get(const KURL& url ) if (m_torkrunning){ DCOPRef("tork*", "DCOPTork").send("startEverything"); if (!anonymized) - DCOPRef("tork*", "DCOPTork").send("toggleKDESetting"); + DCOPRef("tork*", "DCOPTork").send("toggleTDESetting"); wait = "3"; }else{ KProcIO *whichproc = new KProcIO(); whichproc->setUseShell(TRUE); - TQString whichCommand="tork --toggleKDE"; + TQString whichCommand="tork --toggleTDE"; *whichproc<<whichCommand; whichproc->start(KProcIO::NotifyOnExit,TRUE); - //KRun::runCommand( "tork --toggleKDE"); + //KRun::runCommand( "tork --toggleTDE"); wait = "10"; } |