Changeset 83
- Timestamp:
- 01/13/06 19:21:32 (3 years ago)
- Location:
- trunk/src/control
- Files:
-
- 2 modified
-
torcontrol.cpp (modified) (1 diff)
-
torcontrol.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/control/torcontrol.cpp
r79 r83 66 66 67 67 /** Stop the Tor process. */ 68 void 68 bool 69 69 TorControl::stop(QString *errmsg) 70 70 { 71 _torProcess.stop(errmsg);71 return _torProcess.stop(errmsg); 72 72 } 73 73 -
trunk/src/control/torcontrol.h
r78 r83 55 55 56 56 /** Stop the Tor process */ 57 voidstop(QString *errmsg = 0);57 bool stop(QString *errmsg = 0); 58 58 59 59 /** Detect if the Tor process is running */
