summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
Diffstat (limited to 'io')
-rw-r--r--io/source/acceptor/acceptor.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/source/acceptor/acceptor.cxx b/io/source/acceptor/acceptor.cxx
index d5dec6a0af8e..62f0e6e4e589 100644
--- a/io/source/acceptor/acceptor.cxx
+++ b/io/source/acceptor/acceptor.cxx
@@ -145,7 +145,7 @@ namespace io_acceptor
struct BeingInAccept guard( &m_bInAccept, sConnectionDescription );
Reference< XConnection > r;
- if( m_sLastDescription.getLength() &&
+ if( !m_sLastDescription.isEmpty() &&
m_sLastDescription != sConnectionDescription )
{
// instantiate another acceptor for different ports
@@ -154,7 +154,7 @@ namespace io_acceptor
throw ConnectionSetupException( sMessage, Reference< XInterface > () );
}
- if( ! m_sLastDescription.getLength() )
+ if( m_sLastDescription.isEmpty() )
{
// setup the acceptor
try