summaryrefslogtreecommitdiff
path: root/svx/source/form
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/form')
-rw-r--r--svx/source/form/dataaccessdescriptor.cxx4
-rw-r--r--svx/source/form/dbtoolsclient.cxx10
2 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/form/dataaccessdescriptor.cxx b/svx/source/form/dataaccessdescriptor.cxx
index 3c1371234306..dc75cb6c7875 100644
--- a/svx/source/form/dataaccessdescriptor.cxx
+++ b/svx/source/form/dataaccessdescriptor.cxx
@@ -343,7 +343,7 @@ namespace svx
}
- sal_Bool ODataAccessDescriptor::has(DataAccessDescriptorProperty _eWhich) const
+ bool ODataAccessDescriptor::has(DataAccessDescriptorProperty _eWhich) const
{
return m_pImpl->m_aValues.find(_eWhich) != m_pImpl->m_aValues.end();
}
@@ -369,7 +369,7 @@ namespace svx
}
- void ODataAccessDescriptor::initializeFrom(const Sequence< PropertyValue >& _rValues, sal_Bool _bClear)
+ void ODataAccessDescriptor::initializeFrom(const Sequence< PropertyValue >& _rValues, bool _bClear)
{
if (_bClear)
clear();
diff --git a/svx/source/form/dbtoolsclient.cxx b/svx/source/form/dbtoolsclient.cxx
index 6f288a758d0d..a22155887418 100644
--- a/svx/source/form/dbtoolsclient.cxx
+++ b/svx/source/form/dbtoolsclient.cxx
@@ -57,7 +57,7 @@ namespace svxform
ODbtoolsClient::ODbtoolsClient()
{
- m_bCreateAlready = sal_False;
+ m_bCreateAlready = false;
}
@@ -264,18 +264,18 @@ namespace svxform
}
- sal_Bool OStaticDataAccessTools::canInsert(const Reference< XPropertySet>& _rxCursorSet) const
+ bool OStaticDataAccessTools::canInsert(const Reference< XPropertySet>& _rxCursorSet) const
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
if ( ensureLoaded() )
bRet = m_xDataAccessTools->canInsert( _rxCursorSet );
return bRet;
}
- sal_Bool OStaticDataAccessTools::canUpdate(const Reference< XPropertySet>& _rxCursorSet) const
+ bool OStaticDataAccessTools::canUpdate(const Reference< XPropertySet>& _rxCursorSet) const
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
if ( ensureLoaded() )
bRet = m_xDataAccessTools->canUpdate( _rxCursorSet );
return bRet;