summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon/webdavdatasupplier.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-neon/webdavdatasupplier.cxx')
-rw-r--r--ucb/source/ucp/webdav-neon/webdavdatasupplier.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavdatasupplier.cxx b/ucb/source/ucp/webdav-neon/webdavdatasupplier.cxx
index 2bca85f3f0cd..f27bb81924d0 100644
--- a/ucb/source/ucp/webdav-neon/webdavdatasupplier.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavdatasupplier.cxx
@@ -230,14 +230,14 @@ DataSupplier::queryContent( sal_uInt32 nIndex )
//=========================================================================
// virtual
-sal_Bool DataSupplier::getResult( sal_uInt32 nIndex )
+bool DataSupplier::getResult( sal_uInt32 nIndex )
{
osl::ClearableGuard< osl::Mutex > aGuard( m_pImpl->m_aMutex );
if ( m_pImpl->m_aResults.size() > nIndex )
{
// Result already present.
- return sal_True;
+ return true;
}
// Obtain values...
@@ -246,11 +246,11 @@ sal_Bool DataSupplier::getResult( sal_uInt32 nIndex )
if ( m_pImpl->m_aResults.size() > nIndex )
{
// Result already present.
- return sal_True;
+ return true;
}
}
- return sal_False;
+ return false;
}
//=========================================================================
@@ -272,7 +272,7 @@ sal_uInt32 DataSupplier::currentCount()
//=========================================================================
// virtual
-sal_Bool DataSupplier::isCountFinal()
+bool DataSupplier::isCountFinal()
{
return m_pImpl->m_bCountFinal;
}