summaryrefslogtreecommitdiffstats
path: root/automation/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-19 22:18:43 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-19 22:18:43 +0100
commitdaadeb5e216dc531c0c16e78cdd61d7a394acf7f (patch)
tree4df72b69d75b5538bcf0684ff46b8ad57739ddf0 /automation/source
parentremove duplicated en-US entries (diff)
downloadcore-daadeb5e216dc531c0c16e78cdd61d7a394acf7f.tar.gz
core-daadeb5e216dc531c0c16e78cdd61d7a394acf7f.zip
remove unused ByteString using methods
Diffstat (limited to 'automation/source')
-rw-r--r--automation/source/communi/communi.cxx7
-rw-r--r--automation/source/simplecm/simplecm.cxx17
2 files changed, 0 insertions, 24 deletions
diff --git a/automation/source/communi/communi.cxx b/automation/source/communi/communi.cxx
index 10aa6f8e9107..db319e206411 100644
--- a/automation/source/communi/communi.cxx
+++ b/automation/source/communi/communi.cxx
@@ -567,13 +567,6 @@ IMPL_LINK( CommunicationManagerServerAcceptThread, AddConnection, void*, EMPTYAR
return 1;
}
-CommunicationManagerClientViaSocket::CommunicationManagerClientViaSocket( ByteString aHost, sal_uLong nPort, sal_Bool bUseMultiChannel )
-: CommunicationManagerClient( bUseMultiChannel )
-, aHostToTalk( aHost )
-, nPortToTalk( nPort )
-{
-}
-
CommunicationManagerClientViaSocket::CommunicationManagerClientViaSocket( sal_Bool bUseMultiChannel )
: CommunicationManagerClient( bUseMultiChannel )
, aHostToTalk( "" )
diff --git a/automation/source/simplecm/simplecm.cxx b/automation/source/simplecm/simplecm.cxx
index 01c37e99e26b..96bccaa2026d 100644
--- a/automation/source/simplecm/simplecm.cxx
+++ b/automation/source/simplecm/simplecm.cxx
@@ -654,23 +654,6 @@ void SingleCommunicationManager::DestroyingLink( CommunicationLink *pCL )
pCL->InvalidateManager();
}
-
-SingleCommunicationManagerClientViaSocket::SingleCommunicationManagerClientViaSocket( ByteString aHost, sal_uLong nPort, sal_Bool bUseMultiChannel )
-: SingleCommunicationManager( bUseMultiChannel )
-, aHostToTalk( aHost )
-, nPortToTalk( nPort )
-{
-}
-
-
-SingleCommunicationManagerClientViaSocket::SingleCommunicationManagerClientViaSocket( sal_Bool bUseMultiChannel )
-: SingleCommunicationManager( bUseMultiChannel )
-, aHostToTalk()
-, nPortToTalk( 0 )
-{
-}
-
-
sal_Bool CommonSocketFunctions::DoStartCommunication( CommunicationManager *pCM, ICommunicationManagerClient *pCMC, ByteString aHost, sal_uLong nPort )
{
osl::SocketAddr Addr( rtl::OUString( UniString( aHost, RTL_TEXTENCODING_UTF8 ) ), nPort );