summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-31 17:30:06 +0200
committerNoel Grandin <noel@peralex.com>2014-04-01 07:38:09 +0200
commit8728c3466211f71cea119a9895a0f4619fd47d96 (patch)
tree35bbe3172566195c6334b145bdf3d3a92012eaca /dbaccess
parent73c1ac010c544e836cfff4c53542a2bb37630c9f (diff)
connectivity: sal_Bool->bool
Change-Id: Iafa52d3643b9313c20c75cf98f6b1ec231bf9d6d
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/api/RowSetBase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/RowSetBase.cxx b/dbaccess/source/core/api/RowSetBase.cxx
index 01c1c04fdc42..104927481355 100644
--- a/dbaccess/source/core/api/RowSetBase.cxx
+++ b/dbaccess/source/core/api/RowSetBase.cxx
@@ -60,7 +60,7 @@ protected:
virtual void impl_refresh() throw(RuntimeException) SAL_OVERRIDE;
virtual connectivity::sdbcx::ObjectType createObject(const OUString& _rName) SAL_OVERRIDE;
public:
- OEmptyCollection(::cppu::OWeakObject& _rParent,::osl::Mutex& _rMutex) : OCollection(_rParent,sal_True,_rMutex,::std::vector< OUString>()){}
+ OEmptyCollection(::cppu::OWeakObject& _rParent,::osl::Mutex& _rMutex) : OCollection(_rParent, true, _rMutex, ::std::vector< OUString>()){}
};
void OEmptyCollection::impl_refresh() throw(RuntimeException)