summaryrefslogtreecommitdiff
path: root/Bus
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:53:24 +0000
committerfcolin2007-02-01 12:53:24 +0000
commitbcebdc876aa783e746956e2a3d54c312bc43b42a (patch)
tree47128d1a718a67e390e24d4b30aa7950c89fdf44 /Bus
parent6ac72dcc3d5955dc85123eff5d03cd7c0515abaf (diff)
downloadivy-cplusplus-bcebdc876aa783e746956e2a3d54c312bc43b42a.zip
ivy-cplusplus-bcebdc876aa783e746956e2a3d54c312bc43b42a.tar.gz
ivy-cplusplus-bcebdc876aa783e746956e2a3d54c312bc43b42a.tar.bz2
ivy-cplusplus-bcebdc876aa783e746956e2a3d54c312bc43b42a.tar.xz
Utilisateur : Fcolin Date : 23/01/01 Heure : 13:12 Archivé dans $/Ivy Commentaire: remove 'using name space std;' (vss 3)
Diffstat (limited to 'Bus')
-rw-r--r--Bus/Ivy/BufferedSocket.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bus/Ivy/BufferedSocket.cxx b/Bus/Ivy/BufferedSocket.cxx
index 39c7203..d19b68f 100644
--- a/Bus/Ivy/BufferedSocket.cxx
+++ b/Bus/Ivy/BufferedSocket.cxx
@@ -101,7 +101,7 @@ void CBufferedSocket::SetSeparator( char sep )
}
void CBufferedSocket::OnWakeup()
{
- string msg;
+ String msg;
BOOL empty;
try
{
@@ -154,7 +154,7 @@ void CBufferedSocket::Send ( const char * data )
//BOOL toBeSignaled;
EnterCriticalSection( &m_CritSection );
//toBeSignaled = buf_out.IsEmpty() && connected;
- buf_out.push_back( string(data) );
+ buf_out.push_back( String(data) );
LeaveCriticalSection( &m_CritSection );
//TRACE("CBufferedSocket::Send Adding buffer to send count %d\n",buf_out.size());
if ( connected )