summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/DAVResourceAccess.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav/DAVResourceAccess.cxx')
-rw-r--r--ucb/source/ucp/webdav/DAVResourceAccess.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/webdav/DAVResourceAccess.cxx b/ucb/source/ucp/webdav/DAVResourceAccess.cxx
index bbdac2f644fb..8c495610a8d7 100644
--- a/ucb/source/ucp/webdav/DAVResourceAccess.cxx
+++ b/ucb/source/ucp/webdav/DAVResourceAccess.cxx
@@ -60,10 +60,10 @@ int DAVAuthListener_Impl::authenticate(
// container to reject these. Thus, the credential input dialog will be shown again.
// #102871# - Supply username and password from previous try.
// Password container service depends on this!
- if ( inoutUserName.getLength() == 0 && bUsePreviousCredentials )
+ if ( inoutUserName.isEmpty() && bUsePreviousCredentials )
inoutUserName = m_aPrevUsername;
- if ( outPassWord.getLength() == 0 && bUsePreviousCredentials )
+ if ( outPassWord.isEmpty() && bUsePreviousCredentials )
outPassWord = m_aPrevPassword;
rtl::Reference< ucbhelper::SimpleAuthenticationRequest > xRequest
@@ -1008,17 +1008,17 @@ void DAVResourceAccess::initialize()
throw ( DAVException )
{
osl::Guard< osl::Mutex > aGuard( m_aMutex );
- if ( m_aPath.getLength() == 0 )
+ if ( m_aPath.isEmpty() )
{
SerfUri aURI( m_aURL );
rtl::OUString aPath( aURI.GetPath() );
/* #134089# - Check URI */
- if ( !aPath.getLength() )
+ if ( aPath.isEmpty() )
throw DAVException( DAVException::DAV_INVALID_ARG );
/* #134089# - Check URI */
- if ( !aURI.GetHost().getLength() )
+ if ( aURI.GetHost().isEmpty() )
throw DAVException( DAVException::DAV_INVALID_ARG );
if ( !m_xSession.is() || !m_xSession->CanUse( m_aURL ) )