summaryrefslogtreecommitdiffstats
path: root/src/tor_ioslave
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-09 14:04:57 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-01-09 14:04:57 -0600
commit380e3401db2008b52dda34227debf5e15f3bd045 (patch)
tree526d8b5ab69ff02e41286ae2051a5cc5fc673254 /src/tor_ioslave
parentfa266da73737453ca158c991157ed6fe718f89a9 (diff)
downloadtork-380e3401db2008b52dda34227debf5e15f3bd045.tar.gz
tork-380e3401db2008b52dda34227debf5e15f3bd045.zip
Branding and code cleanup.
Diffstat (limited to 'src/tor_ioslave')
-rw-r--r--src/tor_ioslave/torioslave.cpp8
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";
}