diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2004-09-20 11:26:23 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2004-09-20 11:26:23 +0000 |
commit | 8ebf394f89474833ceab2391fbe28d9821e0ead8 (patch) | |
tree | f888e0b2a0ac416d1911535ac956438c8492fec1 /automation/source/testtool/tcommuni.cxx | |
parent | a1490612cbcfd908f592ed44becd3fe6a0fd3c70 (diff) |
INTEGRATION: CWS gh7 (1.4.14); FILE MERGED
2004/09/07 15:37:30 gh 1.4.14.1: #i33935#new command killapp
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 01fe9507f..9e3c2d636 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"); \ |