diff options
author | mikew <mikew@whiteley.org> | 2011-11-24 23:56:22 -0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-11-25 11:18:19 +0000 |
commit | 5c76e221fec40db02d2c6de5204e0d43dc5420fd (patch) | |
tree | a18e83fb9588cc651deded47fc0ccb4a0ad7f4f0 /automation | |
parent | f2f0dbd273e30306428d6e63a84062e9ee5c427b (diff) |
Some German to English comment translations.
Diffstat (limited to 'automation')
-rw-r--r-- | automation/source/simplecm/simplecm.cxx | 14 | ||||
-rw-r--r-- | automation/source/testtool/cmdstrm.cxx | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/automation/source/simplecm/simplecm.cxx b/automation/source/simplecm/simplecm.cxx index b5087f244307..ba9b7990b49a 100644 --- a/automation/source/simplecm/simplecm.cxx +++ b/automation/source/simplecm/simplecm.cxx @@ -376,7 +376,7 @@ ByteString CommunicationManager::GetMyName( CM_NameType ) void CommunicationManager::CallConnectionOpened( CommunicationLink* pCL ) { - pCL->StartCallback(); // Sollte bereits vor dem Aufruf gerufen werden + pCL->StartCallback(); // This should already have been called. pCL->aStart = DateTime(); pCL->aLastAccess = pCL->aStart; bIsCommunicationRunning = sal_True; @@ -385,7 +385,7 @@ void CommunicationManager::CallConnectionOpened( CommunicationLink* pCL ) xLastNewLink = pCL; INFO_MSG( CByteString("C+:").Append( pCL->GetCommunicationPartner( CM_FQDN ) ), - CByteString("Verbindung aufgebaut: ").Append( pCL->GetCommunicationPartner( CM_FQDN ) ), + CByteString("Connection established: ").Append( pCL->GetCommunicationPartner( CM_FQDN ) ), CM_OPEN, pCL ); ConnectionOpened( pCL ); pCL->FinishCallback(); @@ -393,11 +393,11 @@ void CommunicationManager::CallConnectionOpened( CommunicationLink* pCL ) void CommunicationManager::CallConnectionClosed( CommunicationLink* pCL ) { - pCL->StartCallback(); // Sollte bereits vor dem Aufruf gerufen werden + pCL->StartCallback(); // This should already have been called. pCL->aLastAccess = DateTime(); INFO_MSG( CByteString("C-:").Append( pCL->GetCommunicationPartner( CM_FQDN ) ), - CByteString("Verbindung abgebrochen: ").Append( pCL->GetCommunicationPartner( CM_FQDN ) ), + CByteString("Connection broken: ").Append( pCL->GetCommunicationPartner( CM_FQDN ) ), CM_CLOSE, pCL ); ConnectionClosed( pCL ); @@ -410,9 +410,9 @@ void CommunicationManager::CallConnectionClosed( CommunicationLink* pCL ) void CommunicationManager::CallDataReceived( CommunicationLink* pCL ) { - pCL->StartCallback(); // Sollte bereits vor dem Aufruf gerufen werden + pCL->StartCallback(); // Should have already been called pCL->aLastAccess = DateTime(); - CommunicationLinkRef rHold(pCL); // H�lt den Zeiger bis zum Ende des calls + CommunicationLinkRef rHold(pCL); // Keep the pointer for a bit. // should be impossible but happens for mysterious reasons if ( !pCL->pServiceData ) @@ -494,7 +494,7 @@ void CommunicationManager::CallDataReceived( CommunicationLink* pCL ) void CommunicationManager::CallInfoMsg( InfoString aMsg ) { - // Hier wird es wohl kein Housekeeping geben + // Probably no housekeeping here. InfoMsg( aMsg ); } diff --git a/automation/source/testtool/cmdstrm.cxx b/automation/source/testtool/cmdstrm.cxx index 023fc4c1e522..6aba838090c9 100644 --- a/automation/source/testtool/cmdstrm.cxx +++ b/automation/source/testtool/cmdstrm.cxx @@ -372,8 +372,8 @@ void CmdStream::GenCmdSlot( sal_uInt16 nNr, SbxArray* rPar ) break; } - /// #59513# nicht mehr ben�tigt ( siehe oben ) -// rPar->Get( 2*n-1 )->SetUserData(nUserData); // Und wieder zur�cksetzen, so da� auch alles sauber ist. + /// #59513# //don't need this anymore (see prior comment?) +// rPar->Get( 2*n-1 )->SetUserData(nUserData); // Set it back, so everything's clean. } } else |