diff options
Diffstat (limited to 'automation/source/testtool/tcommuni.cxx')
-rw-r--r-- | automation/source/testtool/tcommuni.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/automation/source/testtool/tcommuni.cxx b/automation/source/testtool/tcommuni.cxx index c4e7da886d32..8c50899278af 100644 --- a/automation/source/testtool/tcommuni.cxx +++ b/automation/source/testtool/tcommuni.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tcommuni.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2004-06-17 11:42:13 $ + * last change: $Author: rt $ $Date: 2004-09-20 12:26:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -147,6 +147,11 @@ BOOL CommunicationManagerClientViaSocketTT::RetryConnect() } } +BOOL CommunicationManagerClientViaSocketTT::KillApplication() +{ + if ( pProcess ) + return pProcess->Terminate(); +} #define GETSET(aVar, KeyName, Dafault) \ aVar = aConf.ReadKey(KeyName,"No Entry"); \ |